Skip to content

Commit

Permalink
Merge pull request #1893 from LudwigOrtmann/purge_allthefeuerware
Browse files Browse the repository at this point in the history
Remove all feuerware occurrences
  • Loading branch information
OlegHahm committed Oct 28, 2014
2 parents cf8cf3b + 245df3f commit 7301a89
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 122 deletions.
5 changes: 0 additions & 5 deletions boards/avsextrem/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
#include "bitarithm.h"
#include "msba2_common.h"

#define FEUERWARE_CONF_BOARD_NAME "FU Berlin AVSEXTREM BOARD"

#define LED_RED_PIN (BIT25)
#define LED_GREEN_PIN (BIT26)

Expand All @@ -40,9 +38,6 @@
#define LED_RED_ON (FIO3CLR = LED_RED_PIN)
#define LED_RED_TOGGLE (FIO3PIN ^= LED_RED_PIN)

// 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
Expand Down
77 changes: 0 additions & 77 deletions boards/avsextrem/include/configure.h

This file was deleted.

18 changes: 0 additions & 18 deletions cpu/arm_common/syscalls.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,6 @@
#include "vtimer.h"
#endif

/* When using the HAL standard in and out are handled by HAL
devices. */
#if FEUERWARE_CONF_ENABLE_HAL
#include "hal.h"
#include "interface-chardevice.h"
#include "hal-syscalls.h"
#endif

#define DEBUG_SYSCALLS 0
#if DEBUG_SYSCALLS
#define PRINTF(...) printf(__VA_ARGS__)
Expand Down Expand Up @@ -177,17 +169,7 @@ int _write_r(struct _reent *r, int fd, const void *data, unsigned int count)
switch(fd) {
case STDOUT_FILENO:
case STDERR_FILENO:
#if FEUERWARE_CONF_ENABLE_HAL
if (stdio != NULL) {
result = chardevice_write(stdio, (char *)data, count);
}
else if (hal_state == HAL_NOT_INITIALIZED) {
result = fw_puts((char *)data, count);
}

#else
result = fw_puts((char *)data, count);
#endif
break;

default:
Expand Down
10 changes: 0 additions & 10 deletions cpu/lpc2387/include/cpu-conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,6 @@
* @note $Id$
*/

#define FEUERWARE_CONF_CPU_NAME "NXP LPC2387"

/**
* @name CPU capabilities
* @{
*/
#define FEUERWARE_CPU_LPC2387 1
#define FEUERWARE_CONF_CORE_SUPPORTS_TIME 1
/** @} */

/**
* @name Stdlib configuration
* @{
Expand Down
11 changes: 0 additions & 11 deletions drivers/cc110x_legacy_csma/cc1100.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,6 @@
#include "hwtimer.h"
#include "bitarithm.h"

/* TODO: cc1100 port timer */
#ifdef FEUERWARE_CPU_LPC2387
//#include "cpu/lpc2387/lpc2387-timer2.h"
#endif

#if defined(FEUERWARE_CPU_MSP430)
#include <msp430x16x.h>
#elif defined(FEUERWARE_CPU_LPC2387)
#include "lpc2387.h"
#endif

#define PACKET_LENGTH (0x3E) ///< Packet length = 62 Bytes.
#define CC1100_SYNC_WORD_TX_TIME (90000) /* loop count (max. timeout ~ 15 ms) to wait for */
/* sync word to be transmitted (GDO2 from low to high) */
Expand Down
1 change: 0 additions & 1 deletion drivers/cc110x_legacy_csma/cc1100_phy.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ extern "C" {
*/
typedef struct __attribute__((packed)) cc1100_packet_layer0_t {
radio_packet_length_t length; ///< Length of the packet (without length byte)
uint8_t length; ///< Length of the packet (without length byte)
uint8_t address; ///< Destination address
uint8_t phy_src; ///< Source address (physical source)
uint8_t flags; ///< Flags
Expand Down

0 comments on commit 7301a89

Please sign in to comment.