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

NerD 60 and 80 support #171

Merged
merged 4 commits into from
Jan 19, 2015
Merged

NerD 60 and 80 support #171

merged 4 commits into from
Jan 19, 2015

Conversation

xauser
Copy link
Contributor

@xauser xauser commented Jan 18, 2015

Hello Hasu,

this pull requests adds support for GONs NerD 60 and 80 pcbs. I've also changed the default hotkey for bootloader jump to LSHFT+RSHFT+B as this combination is available on 60% layouts.

Kind regards
xauser

@tmk tmk merged commit 07b54cb into tmk:master Jan 19, 2015
@tmk
Copy link
Owner

tmk commented Jan 19, 2015

Thanks. Merged.

And instead of changing command/command.c you can have following code in your project directory. This code override default command behaviour. Magic Command code is messy and not maintainable I have a plan to refactor but not near future. Iissue #172)

And I'm contemplateing how to organize keyboard/converter projects better. (Issue #173)

#include "command.h"
#include "bootloader.h"

bool command_extra(uint8_t code)
{             
    switch (code) {
        case KC_B:
            clear_keyboard();
            print("\n\nJump to bootloader... ");
            _delay_ms(1000);
            bootloader_jump(); // not return
            print("not supported.\n");
            break;
    }
    return false;
}

@xauser xauser deleted the forhasu branch January 21, 2015 20:14
yoyoerx pushed a commit to yoyoerx/qmk_keyboard that referenced this pull request Mar 4, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants