/* * 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_receive_it(uint8_t *data, int n); void uart_abort_receive(); void timer_uart_start(int n); void timer_uart_stop(); void uart_send(uint8_t *data, int n); #endif /* INC_APP_INTERFACE_H_ */