Update Canoe ps2avr board (#3066)

* Add Percent Canoe keyboard

* Fix row of nonus backslash

* Update info.json to be correct for canoe

* Change LAYOUT_ISO to LAYOUT_iso

* Remove bootloader key in info.json
This commit is contained in:
Dan Hertz 2018-05-29 04:22:43 +01:00 committed by Drashna Jaelre
parent dfa7a708fe
commit 6009ca2d4a
6 changed files with 484 additions and 18 deletions

View file

@ -16,14 +16,33 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "canoe.h"
#include "rgblight.h"
#include <avr/pgmspace.h>
#include "action_layer.h"
#ifdef BACKLIGHT_ENABLE
#include "backlight.h"
#endif
#ifdef RGBLIGHT_ENABLE
#include "i2c.h"
#include "quantum.h"
#include "rgblight.h"
#endif
#ifdef BACKLIGHT_ENABLE
void backlight_set(uint8_t level) {
if (level == 0) {
// Turn out the lights
PORTD &= ~(1<<0 | 1<<1 | 1<<4 | 1<<6);
} else {
// Turn on the lights
PORTD |= (1<<0 | 1<<1 | 1<<4 | 1<<6);
}
}
void backlight_init_ports(void) {
DDRD |= (1<<0 | 1<<1 | 1<<4 | 1<<6);
PORTD &= ~(1<<0 | 1<<1 | 1<<4 | 1<<6);
}
#endif
#ifdef RGBLIGHT_ENABLE
extern rgblight_config_t rgblight_config;
void rgblight_set(void) {
@ -43,3 +62,4 @@ __attribute__ ((weak))
void matrix_scan_user(void) {
rgblight_task();
}
#endif