summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-01-27 16:37:31 +0700
committerhathach <[email protected]>2021-01-27 16:37:31 +0700
commit4fef2ddb4c500f23115781aa87afd1f83b049b9d (patch)
tree6d987a8c1cf2b6c250ce7eb981b4be21fe3f296b /examples
parent1abf9eeb808d9c023352c62a486e68bdf75e1ff6 (diff)
rp2040 move uart id to board specific
Diffstat (limited to 'examples')
-rw-r--r--examples/device/board_test/src/main.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/device/board_test/src/main.c b/examples/device/board_test/src/main.c
index 71665550f..d94b24650 100644
--- a/examples/device/board_test/src/main.c
+++ b/examples/device/board_test/src/main.c
@@ -55,10 +55,6 @@ int main(void)
{
uint32_t interval_ms = board_button_read() ? BLINK_PRESSED : BLINK_UNPRESSED;
- // uart echo
-// uint8_t ch;
-// if ( board_uart_read(&ch, 1) ) board_uart_write(&ch, 1);
-
// Blink every interval ms
if ( !(board_millis() - start_ms < interval_ms) )
{