New features for AKB96
- USB 6KRO - SoftPWM LED - Breathing LED - Fading LED - Typing LED - Ledmap - Ledmap in EEPROM
This commit is contained in:
parent
c6b95b8f60
commit
753f5646d0
@ -70,9 +70,6 @@ static void layer_state_set(uint32_t state)
|
|||||||
layer_state_change(state);
|
layer_state_change(state);
|
||||||
#endif
|
#endif
|
||||||
clear_keyboard_but_mods(); // To avoid stuck keys
|
clear_keyboard_but_mods(); // To avoid stuck keys
|
||||||
#ifdef ON_LAYER_CHANGE
|
|
||||||
layer_change(layer_state);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void layer_clear(void)
|
void layer_clear(void)
|
||||||
|
@ -51,7 +51,8 @@ TARGET_DIR = .
|
|||||||
SRC = keymap_common.c \
|
SRC = keymap_common.c \
|
||||||
matrix.c \
|
matrix.c \
|
||||||
led.c \
|
led.c \
|
||||||
backlight.c
|
backlight.c \
|
||||||
|
ledmap.c
|
||||||
|
|
||||||
ifdef KEYMAP
|
ifdef KEYMAP
|
||||||
SRC := keymap_$(KEYMAP).c $(SRC)
|
SRC := keymap_$(KEYMAP).c $(SRC)
|
||||||
@ -134,12 +135,17 @@ CONSOLE_ENABLE = yes # Console for debug(+400)
|
|||||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
COMMAND_ENABLE = yes # Commands for debug and configuration
|
||||||
#SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
|
#SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
|
||||||
NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
|
NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
|
||||||
|
USB_6KRO_ENABLE = yes # USB 6key Rollover
|
||||||
#PS2_MOUSE_ENABLE = yes # PS/2 mouse(TrackPoint) support
|
#PS2_MOUSE_ENABLE = yes # PS/2 mouse(TrackPoint) support
|
||||||
#PS2_USE_BUSYWAIT = yes
|
#PS2_USE_BUSYWAIT = yes
|
||||||
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
||||||
KEYMAP_EX_ENABLE = yes # External keymap in eeprom
|
KEYMAP_IN_EEPROM_ENABLE = yes # Read keymap from eeprom
|
||||||
KEYMAP_SECTION_ENABLE = yes # Fixed address keymap for keymap editor
|
#KEYMAP_SECTION_ENABLE = yes # Fixed address keymap for keymap editor
|
||||||
|
SOFTPWM_LED_ENABLE = yes # Enable SoftPWM to drive backlight
|
||||||
|
FADING_LED_ENABLE = yes # Enable fading backlight
|
||||||
BREATHING_LED_ENABLE = yes # Enable breathing backlight
|
BREATHING_LED_ENABLE = yes # Enable breathing backlight
|
||||||
|
LEDMAP_ENABLE = yes # Enable LED mapping
|
||||||
|
LEDMAP_IN_EEPROM_ENABLE = yes # Read LED mapping from eeprom
|
||||||
|
|
||||||
# Optimize size but this may cause error "relocation truncated to fit"
|
# Optimize size but this may cause error "relocation truncated to fit"
|
||||||
#EXTRALDFLAGS = -Wl,--relax
|
#EXTRALDFLAGS = -Wl,--relax
|
||||||
|
@ -19,10 +19,19 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
#include <avr/interrupt.h>
|
#include <avr/interrupt.h>
|
||||||
#include <avr/pgmspace.h>
|
#include <avr/pgmspace.h>
|
||||||
#include "backlight.h"
|
#include "backlight.h"
|
||||||
|
#ifdef SOFTPWM_LED_ENABLE
|
||||||
|
#include "softpwm_led.h"
|
||||||
|
#else
|
||||||
#include "breathing_led.h"
|
#include "breathing_led.h"
|
||||||
|
#endif
|
||||||
|
#include "action.h"
|
||||||
|
|
||||||
#ifdef BACKLIGHT_ENABLE
|
#ifdef BACKLIGHT_ENABLE
|
||||||
|
|
||||||
|
static uint8_t backlight_mode;
|
||||||
|
|
||||||
|
void backlight_enable(void);
|
||||||
|
void backlight_disable(void);
|
||||||
inline void backlight_set_raw(uint8_t raw);
|
inline void backlight_set_raw(uint8_t raw);
|
||||||
|
|
||||||
static const uint8_t backlight_table[] PROGMEM = {
|
static const uint8_t backlight_table[] PROGMEM = {
|
||||||
@ -34,16 +43,23 @@ static const uint8_t backlight_table[] PROGMEM = {
|
|||||||
*/
|
*/
|
||||||
void backlight_enable(void)
|
void backlight_enable(void)
|
||||||
{
|
{
|
||||||
|
#ifdef SOFTPWM_LED_ENABLE
|
||||||
|
softpwm_led_enable();
|
||||||
|
#else
|
||||||
// Turn on PWM
|
// Turn on PWM
|
||||||
DDRB |= (1<<PB6);
|
DDRB |= (1<<PB6);
|
||||||
cli();
|
cli();
|
||||||
TCCR1A |= ((1<<WGM10) | (1<<COM1B1));
|
TCCR1A |= ((1<<WGM10) | (1<<COM1B1));
|
||||||
TCCR1B |= ((1<<CS11) | (1<<CS10));
|
TCCR1B |= ((1<<CS11) | (1<<CS10));
|
||||||
sei();
|
sei();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void backlight_disable(void)
|
void backlight_disable(void)
|
||||||
{
|
{
|
||||||
|
#ifdef SOFTPWM_LED_ENABLE
|
||||||
|
softpwm_led_disable();
|
||||||
|
#else
|
||||||
// Turn off PWM
|
// Turn off PWM
|
||||||
cli();
|
cli();
|
||||||
DDRB &= ~(1<<PB6);
|
DDRB &= ~(1<<PB6);
|
||||||
@ -51,29 +67,69 @@ void backlight_disable(void)
|
|||||||
TCCR1B &= ~( (1<<CS11) | (1<<CS10) );
|
TCCR1B &= ~( (1<<CS11) | (1<<CS10) );
|
||||||
sei();
|
sei();
|
||||||
OCR1B = 0;
|
OCR1B = 0;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void backlight_set(uint8_t level)
|
void backlight_set(uint8_t level)
|
||||||
{
|
{
|
||||||
|
backlight_mode = level;
|
||||||
#ifdef BREATHING_LED_ENABLE
|
#ifdef BREATHING_LED_ENABLE
|
||||||
switch (level) {
|
switch (level) {
|
||||||
case 1:
|
case 1:
|
||||||
case 2:
|
case 2:
|
||||||
case 3:
|
case 3:
|
||||||
backlight_enable();
|
backlight_enable();
|
||||||
|
#ifdef SOFTPWM_LED_ENABLE
|
||||||
|
#ifdef FADING_LED_ENABLE
|
||||||
|
fading_led_disable_all();
|
||||||
|
#endif
|
||||||
|
breathing_led_disable_all();
|
||||||
|
#else
|
||||||
breathing_led_disable();
|
breathing_led_disable();
|
||||||
|
#endif
|
||||||
backlight_set_raw(pgm_read_byte(&backlight_table[level]));
|
backlight_set_raw(pgm_read_byte(&backlight_table[level]));
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
case 5:
|
case 5:
|
||||||
case 6:
|
case 6:
|
||||||
backlight_enable();
|
backlight_enable();
|
||||||
|
#ifdef SOFTPWM_LED_ENABLE
|
||||||
|
breathing_led_enable_all();
|
||||||
|
#ifdef FADING_LED_ENABLE
|
||||||
|
fading_led_disable_all();
|
||||||
|
#endif
|
||||||
|
breathing_led_set_duration(6 - level);
|
||||||
|
#else
|
||||||
breathing_led_enable();
|
breathing_led_enable();
|
||||||
breathing_led_set_duration(6 - level);
|
breathing_led_set_duration(6 - level);
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
|
#ifdef FADING_LED_ENABLE
|
||||||
|
case 7:
|
||||||
|
backlight_enable();
|
||||||
|
fading_led_enable_all();
|
||||||
|
breathing_led_disable_all();
|
||||||
|
fading_led_set_direction(FADING_LED_FADE_IN);
|
||||||
|
fading_led_set_duration(3);
|
||||||
|
break;
|
||||||
|
case 8:
|
||||||
|
backlight_enable();
|
||||||
|
fading_led_enable_all();
|
||||||
|
breathing_led_disable_all();
|
||||||
|
fading_led_set_direction(FADING_LED_FADE_OUT);
|
||||||
|
fading_led_set_duration(3);
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
case 0:
|
case 0:
|
||||||
default:
|
default:
|
||||||
|
#ifdef SOFTPWM_LED_ENABLE
|
||||||
|
#ifdef FADING_LED_ENABLE
|
||||||
|
fading_led_disable_all();
|
||||||
|
#endif
|
||||||
|
breathing_led_disable_all();
|
||||||
|
#else
|
||||||
breathing_led_disable();
|
breathing_led_disable();
|
||||||
|
#endif
|
||||||
backlight_disable();
|
backlight_disable();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -88,16 +144,58 @@ void backlight_set(uint8_t level)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef SOFTPWM_LED_ENABLE
|
||||||
#ifdef BREATHING_LED_ENABLE
|
#ifdef BREATHING_LED_ENABLE
|
||||||
void breathing_led_set_raw(uint8_t raw)
|
void breathing_led_set_raw(uint8_t raw)
|
||||||
{
|
{
|
||||||
backlight_set_raw(raw);
|
backlight_set_raw(raw);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
inline void backlight_set_raw(uint8_t raw)
|
inline void backlight_set_raw(uint8_t raw)
|
||||||
{
|
{
|
||||||
|
#ifdef SOFTPWM_LED_ENABLE
|
||||||
|
softpwm_led_set_all(raw);
|
||||||
|
#else
|
||||||
OCR1B = raw;
|
OCR1B = raw;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef SOFTPWM_LED_ENABLE
|
||||||
|
#ifndef LEDMAP_ENABLE
|
||||||
|
void softpwm_led_init(void)
|
||||||
|
{
|
||||||
|
DDRB |= (1<<PB6);
|
||||||
|
PORTB &= ~(1<<PB6);
|
||||||
|
}
|
||||||
|
|
||||||
|
void softpwm_led_on(uint8_t index)
|
||||||
|
{
|
||||||
|
PORTB |= (1<<PB6);
|
||||||
|
}
|
||||||
|
|
||||||
|
void softpwm_led_off(uint8_t index)
|
||||||
|
{
|
||||||
|
PORTB &= ~(1<<PB6);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef FADING_LED_ENABLE
|
||||||
|
void action_keyevent(keyevent_t event)
|
||||||
|
{
|
||||||
|
if (backlight_mode == 7) {
|
||||||
|
if (event.pressed) {
|
||||||
|
softpwm_led_decrease_all(32);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (backlight_mode == 8) {
|
||||||
|
if (event.pressed) {
|
||||||
|
softpwm_led_increase_all(32);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -43,11 +43,19 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
|
|
||||||
/* number of backlight levels */
|
/* number of backlight levels */
|
||||||
#ifdef BREATHING_LED_ENABLE
|
#ifdef BREATHING_LED_ENABLE
|
||||||
|
#ifdef FADING_LED_ENABLE
|
||||||
|
#define BACKLIGHT_LEVELS 8
|
||||||
|
#else
|
||||||
#define BACKLIGHT_LEVELS 6
|
#define BACKLIGHT_LEVELS 6
|
||||||
|
#endif
|
||||||
#else
|
#else
|
||||||
#define BACKLIGHT_LEVELS 3
|
#define BACKLIGHT_LEVELS 3
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef SOFTPWM_LED_ENABLE
|
||||||
|
#define LED_COUNT 3
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
/* translates key to keycode */
|
/* translates key to keycode */
|
||||||
uint8_t keymap_key_to_keycode(uint8_t layer, key_t key)
|
uint8_t keymap_key_to_keycode(uint8_t layer, key_t key)
|
||||||
{
|
{
|
||||||
#ifndef KEYMAP_EX_ENABLE
|
#ifndef KEYMAP_IN_EEPROM_ENABLE
|
||||||
return pgm_read_byte(&keymaps[(layer)][(key.row)][(key.col)]);
|
return pgm_read_byte(&keymaps[(layer)][(key.row)][(key.col)]);
|
||||||
#else
|
#else
|
||||||
return eeconfig_read_keymap_key(layer, key.row, key.col);
|
return eeconfig_read_keymap_key(layer, key.row, key.col);
|
||||||
@ -30,7 +30,7 @@ uint8_t keymap_key_to_keycode(uint8_t layer, key_t key)
|
|||||||
action_t keymap_fn_to_action(uint8_t keycode)
|
action_t keymap_fn_to_action(uint8_t keycode)
|
||||||
{
|
{
|
||||||
return (action_t) {
|
return (action_t) {
|
||||||
#ifndef KEYMAP_EX_ENABLE
|
#ifndef KEYMAP_IN_EEPROM_ENABLE
|
||||||
.code = pgm_read_word(&fn_actions[FN_INDEX(keycode)])
|
.code = pgm_read_word(&fn_actions[FN_INDEX(keycode)])
|
||||||
#else
|
#else
|
||||||
.code = eeconfig_read_keymap_fn_action(FN_INDEX(keycode))
|
.code = eeconfig_read_keymap_fn_action(FN_INDEX(keycode))
|
||||||
@ -38,7 +38,7 @@ action_t keymap_fn_to_action(uint8_t keycode)
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef KEYMAP_EX_ENABLE
|
#ifdef KEYMAP_IN_EEPROM_ENABLE
|
||||||
const uint8_t* keymaps_pointer(void) {
|
const uint8_t* keymaps_pointer(void) {
|
||||||
return (const uint8_t*)keymaps;
|
return (const uint8_t*)keymaps;
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
#include "print.h"
|
#include "print.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
#include "keymap.h"
|
#include "keymap.h"
|
||||||
#include "keymap_ex.h"
|
#include "keymap_in_eeprom.h"
|
||||||
|
|
||||||
|
|
||||||
extern const uint8_t keymaps[][MATRIX_ROWS][MATRIX_COLS];
|
extern const uint8_t keymaps[][MATRIX_ROWS][MATRIX_COLS];
|
||||||
|
@ -90,7 +90,7 @@ const uint16_t fn_actions[] PROGMEM = {
|
|||||||
[4] = ACTION_LAYER_TOGGLE(2)
|
[4] = ACTION_LAYER_TOGGLE(2)
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef KEYMAP_EX_ENABLE
|
#ifdef KEYMAP_IN_EEPROM_ENABLE
|
||||||
uint16_t keys_count(void) {
|
uint16_t keys_count(void) {
|
||||||
return sizeof(keymaps) / sizeof(keymaps[0]) * MATRIX_ROWS * MATRIX_COLS;
|
return sizeof(keymaps) / sizeof(keymaps[0]) * MATRIX_ROWS * MATRIX_COLS;
|
||||||
}
|
}
|
||||||
|
@ -21,6 +21,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
#include "action_layer.h"
|
#include "action_layer.h"
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef LEDMAP_ENABLE
|
||||||
|
|
||||||
/* LED pin configration
|
/* LED pin configration
|
||||||
* REV_V2
|
* REV_V2
|
||||||
* CapsLock PB5 (D9)
|
* CapsLock PB5 (D9)
|
||||||
@ -41,6 +43,15 @@ void led_set(uint8_t usb_led)
|
|||||||
DDRB &= ~(1<<PB5);
|
DDRB &= ~(1<<PB5);
|
||||||
PORTB &= ~(1<<PB5);
|
PORTB &= ~(1<<PB5);
|
||||||
}
|
}
|
||||||
|
if (usb_led & (1<<USB_LED_NUM_LOCK)) {
|
||||||
|
// output high
|
||||||
|
DDRB |= (1<<PB2);
|
||||||
|
PORTB |= (1<<PB2);
|
||||||
|
} else {
|
||||||
|
// Hi-Z
|
||||||
|
DDRB &= ~(1<<PB2);
|
||||||
|
PORTB &= ~(1<<PB2);
|
||||||
|
}
|
||||||
#elif defined(REV_V3)
|
#elif defined(REV_V3)
|
||||||
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
|
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
|
||||||
// output high
|
// output high
|
||||||
@ -51,24 +62,7 @@ void led_set(uint8_t usb_led)
|
|||||||
DDRC &= ~(1<<PC7);
|
DDRC &= ~(1<<PC7);
|
||||||
PORTC &= ~(1<<PC7);
|
PORTC &= ~(1<<PC7);
|
||||||
}
|
}
|
||||||
#endif
|
if (usb_led & (1<<USB_LED_NUM_LOCK)) {
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef ON_LAYER_CHANGE
|
|
||||||
void layer_change(uint32_t state)
|
|
||||||
{
|
|
||||||
#if defined(REV_V2)
|
|
||||||
if (state & (1UL<<2)) {
|
|
||||||
// output high
|
|
||||||
DDRB |= (1<<PB2);
|
|
||||||
PORTB |= (1<<PB2);
|
|
||||||
} else {
|
|
||||||
// Hi-Z
|
|
||||||
DDRB &= ~(1<<PB2);
|
|
||||||
PORTB &= ~(1<<PB2);
|
|
||||||
}
|
|
||||||
#elif defined(REV_V3)
|
|
||||||
if (state & (1UL<<2)) {
|
|
||||||
// output high
|
// output high
|
||||||
DDRC |= (1<<PC6);
|
DDRC |= (1<<PC6);
|
||||||
PORTC |= (1<<PC6);
|
PORTC |= (1<<PC6);
|
||||||
@ -79,4 +73,5 @@ void layer_change(uint32_t state)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
100
keyboard/akb96/ledmap.c
Normal file
100
keyboard/akb96/ledmap.c
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
#include <avr/pgmspace.h>
|
||||||
|
#include "ledmap.h"
|
||||||
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef LEDMAP_ENABLE
|
||||||
|
|
||||||
|
static const uint8_t ledmaps[LED_COUNT] PROGMEM = {
|
||||||
|
[0] = LEDMAP_CAPS_LOCK | LEDMAP_BACKLIGHT, // CapsLock
|
||||||
|
[1] = LEDMAP_LAYER(2) | LEDMAP_BACKLIGHT, // NumLock
|
||||||
|
[2] = LEDMAP_BACKLIGHT, // Backlight
|
||||||
|
};
|
||||||
|
|
||||||
|
uint8_t ledmap_get_code(uint8_t index)
|
||||||
|
{
|
||||||
|
return pgm_read_byte(&ledmaps[index]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* LED pin configration
|
||||||
|
* REV_V2
|
||||||
|
* CapsLock PB5 (D9)
|
||||||
|
* NumLock PB2 (D16)
|
||||||
|
* Backlight PB6 (D10)
|
||||||
|
* REV_V3
|
||||||
|
* CapsLock PC7
|
||||||
|
* NumLock PC6
|
||||||
|
* Backlight PB6
|
||||||
|
*/
|
||||||
|
void ledmap_led_init(void)
|
||||||
|
{
|
||||||
|
#if defined(REV_V2)
|
||||||
|
DDRB |= (1<<PB5 | 1<<PB2);
|
||||||
|
PORTB &= ~(1<<PB5 | 1<<PB2);
|
||||||
|
#elif defined(REV_V3)
|
||||||
|
DDRC |= (1<<PC7 | 1<<PC6);
|
||||||
|
PORTC &= ~(1<<PC7 | 1<<PC6);
|
||||||
|
#endif
|
||||||
|
DDRB |= (1<<PB6);
|
||||||
|
PORTB &= ~(1<<PB6);
|
||||||
|
}
|
||||||
|
|
||||||
|
void ledmap_led_on(uint8_t index)
|
||||||
|
{
|
||||||
|
#if defined(REV_V2)
|
||||||
|
switch (index) {
|
||||||
|
case 0:
|
||||||
|
PORTB |= (1<<PB5);
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
PORTB |= (1<<PB2);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
PORTB |= (1<<PB6);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
#elif defined(REV_V3)
|
||||||
|
switch (index) {
|
||||||
|
case 0:
|
||||||
|
PORTC |= (1<<PC7);
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
PORTC |= (1<<PC6);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
PORTB |= (1<<PB6);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void ledmap_led_off(uint8_t index)
|
||||||
|
{
|
||||||
|
#if defined(REV_V2)
|
||||||
|
switch (index) {
|
||||||
|
case 0:
|
||||||
|
PORTB &= ~(1<<PB5);
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
PORTB &= ~(1<<PB2);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
PORTB &= ~(1<<PB6);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
#elif defined(REV_V3)
|
||||||
|
switch (index) {
|
||||||
|
case 0:
|
||||||
|
PORTC &= ~(1<<PC7);
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
PORTC &= ~(1<<PC6);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
PORTB &= ~(1<<PB6);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
Reference in New Issue
Block a user