Files

copied
Last update 7 years 9 months by ivanfeofanov
Filescurrent_detecting_sensorsrcatmega16A_testatmega16A
..
Atmega16AHardware.h
avr_time.c
avr_time.h
avr_uart.c
avr_uart.h
Atmega16AHardware.h
#ifndef ATMEGA16A_HARDWARE_H #define ATMEGA16A_HARDWARE_H extern "C" { #include <avr/interrupt.h> #include "avr_time.h" #include "avr_uart.h" } class Atmega16AHardware { public: Atmega16AHardware() {} void init() { avr_time_init(); avr_uart_init(); sei(); } //Read a byte of data from ROS connection //If no data - returns - 1 int16_t read() { return avr_uart_receive_byte(); } //Send a byte of data to ROS connection void write(char* data, uint32_t length) { for(uint32_t i = 0; i < length; i++){ avr_uart_send_byte(data[i]); } } //Return miliseconds since start of program uint32_t time() { return avr_time_now(); } }; #endif
Report a bug