Files @ dc014539e59f
Branch filter:

Location: seniordesign-firmware/master/master/lib/ax25.h

ethanzonca@CL-SEC241-08.cedarville.edu
Slightly modified AX25 library and mods
/*
 * ax25.h
 *
 * Created: 10/30/2012 12:14:05 PM
 *  Author: ethanzonca
 */ 


#ifndef AX25_H_
#define AX25_H_

void ax25_send_byte(uint8_t a_byte);
void ax25_send_flag();
void ax25_send_string(const char *string);
void ax25_send_header(const struct s_address *addresses, int num_addresses);
void ax25_send_footer();
void ax25_flush_frame();

#endif /* AX25_H_ */