Skip to content

Commit aece49a

Browse files
committed
pico-ice-default: prevent the LEDs from glowing
1 parent e784662 commit aece49a

File tree

1 file changed

+4
-0
lines changed
  • Firmware/pico-ice-default

1 file changed

+4
-0
lines changed

Firmware/pico-ice-default/main.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
// pico-ice-sdk
3232
#include "ice_usb.h"
3333
#include "ice_fpga.h"
34+
#include "ice_led.h"
3435

3536
#define UART_TX_PIN 0
3637
#define UART_RX_PIN 1
@@ -48,6 +49,9 @@ int main(void) {
4849
ice_fpga_init(12);
4950
ice_fpga_start();
5051

52+
// Prevent the LEDs from glowing slightly
53+
ice_led_init();
54+
5155
while (true) {
5256
tud_task();
5357
}

0 commit comments

Comments
 (0)