diff options
| author | Louis Burda <quent.burda@gmail.com> | 2022-11-29 04:50:45 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2022-11-29 04:50:45 +0100 |
| commit | 6defee37f9939991bbf3152e2cd4e18593baa541 (patch) | |
| tree | e743df5b0b7234dbb56da95f551f7fab90da5127 /src/main.c | |
| parent | 20c38dd87e618713ff9bd131e39cc95dfdb949c8 (diff) | |
| download | sxkbd-6defee37f9939991bbf3152e2cd4e18593baa541.tar.gz sxkbd-6defee37f9939991bbf3152e2cd4e18593baa541.zip | |
Fix pio uart integration with neopix pio
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -45,11 +45,13 @@ main(void) board_init(); tud_init(BOARD_TUD_RHPORT); usb_stdio_init(); - neopix_init(&onboard_led, pio0, 0, 25); + neopix_init(&onboard_led, ONBOARD_LED_PIN); matrix_init(); split_init(); //hid_init(); + ASSERT(1 == 0); + while (true) { tud_task(); blink_task(); |
