| 12345678910111213141516171819 |
- /*
- * app_interface.h
- *
- * Created on: Nov 22, 2023
- * Author: juraj
- */
- #ifndef INC_APP_INTERFACE_H_
- #define INC_APP_INTERFACE_H_
- void led_on();
- void led_off();
- void led_toggle();
- void uart_send(uint8_t *data, int n);
- void uart_receive(uint8_t *data, int n);
- void app_delay(uint8_t);
- #endif /* INC_APP_INTERFACE_H_ */
|