Lots of changes / commits! This allows ravenusbstick example to build at least.
This commit is contained in:
parent
6e3ee0d917
commit
a520fe4646
18 changed files with 1474 additions and 249 deletions
|
@ -31,7 +31,7 @@
|
|||
* Author: Adam Dunkels <adam@sics.se>
|
||||
* Simon Barner <barner@in.tum.de>
|
||||
*
|
||||
* @(#)$Id: rs232.h,v 1.2 2006/12/22 17:00:45 barner Exp $
|
||||
* @(#)$Id: rs232.h,v 1.3 2008/10/14 19:06:51 c_oflynn Exp $
|
||||
*/
|
||||
|
||||
#ifndef __RS232_H__
|
||||
|
@ -40,8 +40,12 @@
|
|||
#include <avr/pgmspace.h>
|
||||
#include "contiki-conf.h"
|
||||
|
||||
#if MCU == atmega128
|
||||
#if defined (__AVR_ATmega128__)
|
||||
#include "dev/rs232_atmega128.h"
|
||||
#elif defined (__AVR_ATmega1284P__)
|
||||
#include "dev/rs232_atmega1284.h"
|
||||
#elif defined (__AVR_AT90USB1287__)
|
||||
#include "dev/rs232_at90usb1287.h"
|
||||
#else
|
||||
#error "Please implement a rs232 header for your MCU (or set the MCU type \
|
||||
in contiki-conf.h)."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue