2018-02-10 23:47:15 +01:00
|
|
|
#include "cu75.h"
|
2023-09-24 04:32:20 +02:00
|
|
|
#include <avr/wdt.h>
|
2018-02-10 23:47:15 +01:00
|
|
|
|
|
|
|
#ifdef AUDIO_ENABLE
|
|
|
|
float test_sound[][2] = SONG(STARTUP_SOUND);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
uint16_t click_hz = CLICK_HZ;
|
|
|
|
uint16_t click_time = CLICK_MS;
|
|
|
|
uint8_t click_toggle = CLICK_ENABLED;
|
|
|
|
|
|
|
|
|
|
|
|
void matrix_init_kb(void)
|
|
|
|
{
|
|
|
|
// put your keyboard start-up code here
|
|
|
|
// runs once when the firmware starts up
|
|
|
|
matrix_init_user();
|
|
|
|
|
|
|
|
#ifdef AUDIO_ENABLE
|
|
|
|
audio_init();
|
2020-05-30 22:14:59 +02:00
|
|
|
PLAY_SONG(test_sound);
|
2018-02-10 23:47:15 +01:00
|
|
|
// Fix port B5
|
2021-09-03 18:09:30 +02:00
|
|
|
setPinInput(B5);
|
|
|
|
writePinHigh(B5);
|
2018-02-10 23:47:15 +01:00
|
|
|
#else
|
|
|
|
// If we're not using the audio pin, drive it low
|
2021-09-03 18:09:30 +02:00
|
|
|
setPinOutput(C6);
|
|
|
|
writePinLow(C6);
|
2018-02-10 23:47:15 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void matrix_scan_kb(void)
|
|
|
|
{
|
|
|
|
#ifdef WATCHDOG_ENABLE
|
|
|
|
wdt_reset();
|
|
|
|
#endif
|
|
|
|
matrix_scan_user();
|
|
|
|
}
|
|
|
|
|
|
|
|
void click(uint16_t freq, uint16_t duration){
|
|
|
|
#ifdef AUDIO_ENABLE
|
|
|
|
if(freq >= 100 && freq <= 20000 && duration < 100){
|
|
|
|
play_note(freq, 10);
|
|
|
|
for (uint16_t i = 0; i < duration; i++){
|
|
|
|
_delay_ms(1);
|
|
|
|
}
|
|
|
|
stop_all_notes();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
bool process_record_kb(uint16_t keycode, keyrecord_t* record)
|
|
|
|
{
|
|
|
|
// Test code that turns on the switch led for the key that is pressed
|
|
|
|
// set_backlight_by_keymap(record->event.key.col, record->event.key.row);
|
|
|
|
if (click_toggle && record->event.pressed){
|
|
|
|
click(click_hz, click_time);
|
|
|
|
}
|
2022-09-03 07:50:44 +02:00
|
|
|
if (keycode == QK_BOOT) {
|
2018-02-10 23:47:15 +01:00
|
|
|
reset_keyboard_kb();
|
|
|
|
}
|
|
|
|
return process_record_user(keycode, record);
|
|
|
|
}
|
|
|
|
|
2023-01-20 17:21:17 +01:00
|
|
|
void reset_keyboard_kb(void){
|
2018-02-10 23:47:15 +01:00
|
|
|
#ifdef WATCHDOG_ENABLE
|
|
|
|
MCUSR = 0;
|
|
|
|
wdt_disable();
|
|
|
|
wdt_reset();
|
|
|
|
#endif
|
|
|
|
reset_keyboard();
|
|
|
|
}
|