AI工具写的环形缓冲区

This commit is contained in:
2025-08-11 20:11:46 +08:00
parent c6c90800d4
commit 4a488429bf
13 changed files with 470 additions and 154 deletions

View File

@@ -8,11 +8,11 @@ void led_init(void) {
}
void led_on(void) {
gpio_bit_set(LED_PORT, LED_PIN);
gpio_bit_reset(LED_PORT, LED_PIN);
}
void led_off(void) {
gpio_bit_reset(LED_PORT, LED_PIN);
gpio_bit_set(LED_PORT, LED_PIN);
}
void led_toggle(void) {