Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GEN ONE Eclipse_65 keyboard addition #10669

Merged
merged 22 commits into from
Oct 28, 2020
Merged

GEN ONE Eclipse_65 keyboard addition #10669

merged 22 commits into from
Oct 28, 2020

Conversation

rojasa1990
Copy link
Contributor

@rojasa1990 rojasa1990 commented Oct 17, 2020

Description

Types of Changes

  • Core
  • Bugfix
  • New feature
  • Enhancement/optimization
  • Keyboard (addition or update)
  • Keymap/layout/userspace (addition or update)
  • Documentation

Issues Fixed or Closed by This PR

Checklist

  • My code follows the code style of this project: C, Python
  • I have read the PR Checklist document and have made the appropriate changes.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have read the CONTRIBUTING document.
  • I have added tests to cover my changes.
  • I have tested the changes and verified that they work and don't break anything (as well as I can manage).

Copy link
Member

@zvecr zvecr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same issue as #10644. You will have to fix up the added files as this PR cannot be merged with the files duplicated at the root level.

@zvecr zvecr changed the title Adding eclipse keyboard with corrected issues GEN ONE Eclipse_65 keyboard addition Oct 17, 2020
@rojasa1990
Copy link
Contributor Author

Same issue as #10644. You will have to fix up the added files as this PR cannot be merged with the files duplicated at the root level.

How do I fix the duplicate files from the root level problem?

@ridingqwerty
Copy link
Contributor

Same issue as #10644. You will have to fix up the added files as this PR cannot be merged with the files duplicated at the root level.

How do I fix the duplicate files from the root level problem?

From the qmk_firmware/ directory on your branch you should be able to do this:

rm -rf genone

git status will then show the following files being removed:

        deleted:    genone/eclipse_65/config.h
        deleted:    genone/eclipse_65/eclipse_65.c
        deleted:    genone/eclipse_65/eclipse_65.h
        deleted:    genone/eclipse_65/info.json
        deleted:    genone/eclipse_65/keymaps/default/keymap.c
        deleted:    genone/eclipse_65/readme.md
        deleted:    genone/eclipse_65/rules.mk
        deleted:    genone/genone_main.c

(note that keyboards/genone/ files will still be intact)

Then you can do these to commit the changes to your branch:

git add .
git commit -m "Removing duplicate files"
git push -u origin master

@rojasa1990
Copy link
Contributor Author

Same issue as #10644. You will have to fix up the added files as this PR cannot be merged with the files duplicated at the root level.

How do I fix the duplicate files from the root level problem?

From the qmk_firmware/ directory on your branch you should be able to do this:

rm -rf genone

git status will then show the following files being removed:

        deleted:    genone/eclipse_65/config.h
        deleted:    genone/eclipse_65/eclipse_65.c
        deleted:    genone/eclipse_65/eclipse_65.h
        deleted:    genone/eclipse_65/info.json
        deleted:    genone/eclipse_65/keymaps/default/keymap.c
        deleted:    genone/eclipse_65/readme.md
        deleted:    genone/eclipse_65/rules.mk
        deleted:    genone/genone_main.c

(note that keyboards/genone/ files will still be intact)

Then you can do these to commit the changes to your branch:

git add .
git commit -m "Removing duplicate files"
git push -u origin master

Where would I type these lines of code? I searched around my branch but did not find a place to write this.

@rojasa1990
Copy link
Contributor Author

Same issue as #10644. You will have to fix up the added files as this PR cannot be merged with the files duplicated at the root level.

How do I fix the duplicate files from the root level problem?

From the qmk_firmware/ directory on your branch you should be able to do this:
rm -rf genone
git status will then show the following files being removed:

        deleted:    genone/eclipse_65/config.h
        deleted:    genone/eclipse_65/eclipse_65.c
        deleted:    genone/eclipse_65/eclipse_65.h
        deleted:    genone/eclipse_65/info.json
        deleted:    genone/eclipse_65/keymaps/default/keymap.c
        deleted:    genone/eclipse_65/readme.md
        deleted:    genone/eclipse_65/rules.mk
        deleted:    genone/genone_main.c

(note that keyboards/genone/ files will still be intact)
Then you can do these to commit the changes to your branch:

git add .
git commit -m "Removing duplicate files"
git push -u origin master

Where would I type these lines of code? I searched around my branch but did not find a place to write this.

I figured it out on MSYS2

@rojasa1990
Copy link
Contributor Author

Same issue as #10644. You will have to fix up the added files as this PR cannot be merged with the files duplicated at the root level.

How do I fix the duplicate files from the root level problem?

From the qmk_firmware/ directory on your branch you should be able to do this:
rm -rf genone
git status will then show the following files being removed:

        deleted:    genone/eclipse_65/config.h
        deleted:    genone/eclipse_65/eclipse_65.c
        deleted:    genone/eclipse_65/eclipse_65.h
        deleted:    genone/eclipse_65/info.json
        deleted:    genone/eclipse_65/keymaps/default/keymap.c
        deleted:    genone/eclipse_65/readme.md
        deleted:    genone/eclipse_65/rules.mk
        deleted:    genone/genone_main.c

(note that keyboards/genone/ files will still be intact)
Then you can do these to commit the changes to your branch:

git add .
git commit -m "Removing duplicate files"
git push -u origin master

Where would I type these lines of code? I searched around my branch but did not find a place to write this.

I figured it out on MSYS2

Thanks

@rojasa1990
Copy link
Contributor Author

rojasa1990 commented Oct 19, 2020 via email

Taken the 0xFEED for vendor ID as suggested in vendor documentation and an available PID
Added the GPL2+ header to keymap.c file
@drashna drashna requested a review from a team October 23, 2020 21:54
keyboards/genone/eclipse_65/config.h Outdated Show resolved Hide resolved
keyboards/genone/eclipse_65/eclipse_65.c Show resolved Hide resolved
keyboards/genone/eclipse_65/readme.md Outdated Show resolved Hide resolved
keyboards/genone/eclipse_65/rules.mk Outdated Show resolved Hide resolved
keyboards/genone/eclipse_65/rules.mk Outdated Show resolved Hide resolved
keyboards/genone/genone_main.c Outdated Show resolved Hide resolved
keyboards/genone/eclipse_65/keymaps/default/keymap.c Outdated Show resolved Hide resolved
keyboards/genone/eclipse_65/keymaps/default/keymap.c Outdated Show resolved Hide resolved
keyboards/genone/eclipse_65/eclipse_65.h Outdated Show resolved Hide resolved
rojasa1990 and others added 2 commits October 23, 2020 22:43
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
rojasa1990 and others added 7 commits October 23, 2020 22:50
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Thanks for the comment
I removed suggested items, corrected some spacing issues, and added suggested items.
Thanks for the comment.
Deleted genone_main.c file as requested
@rojasa1990
Copy link
Contributor Author

rojasa1990 commented Oct 24, 2020 via email

@rojasa1990
Copy link
Contributor Author

Same issue as #10644. You will have to fix up the added files as this PR cannot be merged with the files duplicated at the root level.

How do I fix the duplicate files from the root level problem?

I deleted duplicate files like requested.

@rojasa1990
Copy link
Contributor Author

Same issue as #10644. You will have to fix up the added files as this PR cannot be merged with the files duplicated at the root level.

Deleted duplicate files as requested.

@drashna drashna merged commit 8685409 into qmk:master Oct 28, 2020
@rojasa1990
Copy link
Contributor Author

rojasa1990 commented Oct 29, 2020 via email

oscarcarlsson pushed a commit to oscarcarlsson/qmk_firmware that referenced this pull request Nov 2, 2020
* Add files via upload

* Add files via upload

* Add files via upload

* Update config.h

* Update rules.mk

* Update config.h

* Update config.h

* Update config.h

* Update config.h

* Add files via upload

* Removing duplicate files

* Resolve VID and PID collisions as requested

Taken the 0xFEED for vendor ID as suggested in vendor documentation and an available PID

* add a GPL2+ compatible license header as requested

Added the GPL2+ header to keymap.c file

* Update keyboards/genone/eclipse_65/config.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/genone/eclipse_65/readme.md

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/genone/eclipse_65/eclipse_65.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/genone/eclipse_65/rules.mk

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/genone/eclipse_65/keymaps/default/keymap.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/genone/eclipse_65/keymaps/default/keymap.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/genone/eclipse_65/eclipse_65.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Corrected items on rules.mk as suggested 

Thanks for the comment
I removed suggested items, corrected some spacing issues, and added suggested items.

* Deleted genone_main.c file

Thanks for the comment.
Deleted genone_main.c file as requested

Co-authored-by: Ryan <fauxpark@gmail.com>
tacahiroy pushed a commit to tacahiroy/qmk_firmware that referenced this pull request Nov 8, 2020
* Add files via upload

* Add files via upload

* Add files via upload

* Update config.h

* Update rules.mk

* Update config.h

* Update config.h

* Update config.h

* Update config.h

* Add files via upload

* Removing duplicate files

* Resolve VID and PID collisions as requested

Taken the 0xFEED for vendor ID as suggested in vendor documentation and an available PID

* add a GPL2+ compatible license header as requested

Added the GPL2+ header to keymap.c file

* Update keyboards/genone/eclipse_65/config.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/genone/eclipse_65/readme.md

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/genone/eclipse_65/eclipse_65.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/genone/eclipse_65/rules.mk

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/genone/eclipse_65/keymaps/default/keymap.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/genone/eclipse_65/keymaps/default/keymap.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/genone/eclipse_65/eclipse_65.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Corrected items on rules.mk as suggested 

Thanks for the comment
I removed suggested items, corrected some spacing issues, and added suggested items.

* Deleted genone_main.c file

Thanks for the comment.
Deleted genone_main.c file as requested

Co-authored-by: Ryan <fauxpark@gmail.com>
nicsuzor added a commit to nicsuzor/qmk_firmware that referenced this pull request Nov 14, 2020
* upstream/master: (636 commits)
  [Keyboard] Adding info.json files for NIBBLE 65% keyboard (qmk#10769)
  [Keymap] Add KiCad keymap for ANAVI Macro Pad 8 (qmk#10766)
  [Keymap] add an autoclicker to my plaid keymap (qmk#10743)
  Roadster Edit (qmk#10784)
  [Keyboard] Redox via support added (qmk#10710)
  [Keyboard] Adding Little Alby the Arduino Keyboard (qmk#10713)
  Add brightness level API to OLED driver (qmk#10772)
  [Keyboard] Add via keymap to E6.5 (qmk#10771)
  [Keyboard] Add via keymap for percent booster (qmk#10768)
  xelus/kangaroo: fix info.json layout macro reference (qmk#10765)
  [Keyboard] Added polilla keyboard (squashed) (qmk#10686)
  docs(massdrop alt/ctrl): update link to loader releases (qmk#10781)
  [Keyboard] KBDfans Bella Soldered tidy-up (qmk#10753)
  [Keyboard] Add Via support for TG4x (qmk#10571)
  GEN ONE Eclipse_65 keyboard addition (qmk#10669)
  VN66 refactor (qmk#10776)
  Stella refactor (qmk#10775)
  [Keymap] greatwizard userspace and ortho 4x12 and 5x12 keymaps (qmk#9584)
  add rsync to the api update process
  [Keyboard] Add Projectkb/alice/rev2 LAYOUT_alice support (qmk#10697)
  ...
@rojasa1990
Copy link
Contributor Author

rojasa1990 commented Feb 26, 2021 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants