You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
419 B

1 year ago
/*
* USART0Custom.h
*
* Created: 26.10.2023 17:37:21
* Author: Katya
*/
#ifndef USART0CUSTOM_H_
#define USART0CUSTOM_H_
#include <avr/io.h>
#include <avr/interrupt.h>
#include <stdio.h>
#include <stdlib.h>
#include <util/delay.h>
#include <inttypes.h>
void USART_Init (uint16_t speed);
void USART_Transmit (uint8_t data);
uint8_t USART_Receive();
uint8_t USART_DataAvailable();
#endif /* USART0CUSTOM_H_ */