Solar panel
Loading...
Searching...
No Matches
uart.c
Go to the documentation of this file.
1#include "uart.h"
2
3void uart_send(uint8_t *tx_buf, uint8_t length){
4 for (uint8_t i = 0; i < length; i++){
5 EUSART1_Write(tx_buf[i]);
6 }
7}
uint8_t tx_buf[256]
Definition: modbus.c:30
uint16_t i
Current in microamperes.
Definition: old_main.c:37
void uart_send(uint8_t *tx_buf, uint8_t length)
Definition: uart.c:3