mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
62 lines
1.3 KiB
C
62 lines
1.3 KiB
C
|
/**
|
||
|
* @ingroup conf
|
||
|
* @ingroup avsextrem
|
||
|
*
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* @brief avsextrem board configuration
|
||
|
*
|
||
|
* @author Freie Universität Berlin, Computer Systems & Telematics, FeuerWhere project
|
||
|
* @author baar
|
||
|
* @author Zakaria Kasmi
|
||
|
* @version $Revision: 1127 $
|
||
|
*
|
||
|
* @note $Id: board-conf.h 1127 2009-05-13 08:48:29Z baar $
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef BOARDCONF_H_
|
||
|
#define BOARDCONF_H_
|
||
|
#include <bitarithm.h>
|
||
|
|
||
|
|
||
|
#define FEUERWARE_CONF_BOARD_NAME "FU Berlin AVSEXTREM BOARD"
|
||
|
|
||
|
#define LED_RED_PIN (BIT25)
|
||
|
#define LED_GREEN_PIN (BIT26)
|
||
|
|
||
|
#define LED_GREEN_OFF (FIO3SET = LED_GREEN_PIN)
|
||
|
#define LED_GREEN_ON (FIO3CLR = LED_GREEN_PIN)
|
||
|
#define LED_GREEN_TOGGLE (FIO3PIN ^= LED_GREEN_PIN)
|
||
|
|
||
|
#define LED_RED_OFF (FIO3SET = LED_RED_PIN)
|
||
|
#define LED_RED_ON (FIO3CLR = LED_RED_PIN)
|
||
|
#define LED_RED_TOGGLE (FIO3PIN ^= LED_RED_PIN)
|
||
|
|
||
|
|
||
|
|
||
|
#ifdef MODULE_CC110X
|
||
|
#define FEUERWARE_CONF_NUM_RADIOS 1
|
||
|
#else
|
||
|
#define FEUERWARE_CONF_NUM_RADIOS 0
|
||
|
#endif
|
||
|
|
||
|
// if FAT is enabled this board supports files
|
||
|
#define FEUERWARE_CONF_CORE_SUPPORTS_FILES defined(MODULE_FAT)
|
||
|
|
||
|
#ifdef MODULE_FAT
|
||
|
#define CFG_CONF_MEM_SIZE 0x7FFFFFFF
|
||
|
#define SYSLOG_CONF_NUM_INTERFACES 2
|
||
|
#else
|
||
|
#define SYSLOG_CONF_NUM_INTERFACES 1
|
||
|
#endif
|
||
|
|
||
|
void init_clks1(void);
|
||
|
|
||
|
/** @} */
|
||
|
#endif /* BOARDCONF_H_ */
|
||
|
|