Hallo,

ich habe versucht nach der Beschreibung auf der Seite

http://old.ethersex.de/index.php/BitfehlerASK zu arbeiten.

Ich konnte nur die "alte" Wiki Seite finden.
Keine im neuen Wiki. Somit passt auch die Beschreibung der Auswahl in Ethersex nicht dem aktuellen Stand der Entwiclung. Ich erhalte folgende Fehlermeldung nach "make"

In file included from ./config.h:76:0,
                 from hardware/radio/rfm12/rfm12.c:31:
./pinning.c:35:31: error: ‘PORTSPI_CS_RFM12_RFM12_IP_USE_RFM12_PORT’ undeclared here (not in a function)
 #define _PORT_CHAR(character) PORT ## character
                               ^
./pinning.c:36:30: note: in expansion of macro ‘_PORT_CHAR’
 #define PORT_CHAR(character) _PORT_CHAR(character)
                              ^
hardware/radio/rfm12/rfm12.c:39:24: note: in expansion of macro ‘PORT_CHAR’
 #define _RFM12_PORT(c) PORT_CHAR(SPI_CS_RFM12_ ## c ## _PORT)
                        ^
hardware/radio/rfm12/rfm12.c:40:24: note: in expansion of macro ‘_RFM12_PORT’
 #define RFM12_PORT(c)  _RFM12_PORT(c)
                        ^
hardware/radio/rfm12/rfm12.c:47:5: note: in expansion of macro ‘RFM12_PORT’
   {&RFM12_PORT(RFM12_IP_USE_RFM12),
     ^
In file included from /usr/lib/avr/include/avr/io.h:99:0,
                 from /usr/lib/avr/include/avr/wdt.h:41,
                 from ./config.h:85,
                 from hardware/radio/rfm12/rfm12.c:31:
./pinning.c:38:30: error: ‘PINSPI_CS_RFM12_RFM12_IP_USE_RFM12_PIN’ undeclared here (not in a function)
 #define _PIN_CHAR(character) PIN ## character
                              ^
./pinning.c:39:29: note: in expansion of macro ‘_PIN_CHAR’
 #define PIN_CHAR(character) _PIN_CHAR(character)
                             ^
hardware/radio/rfm12/rfm12.c:41:23: note: in expansion of macro ‘PIN_CHAR’
 #define _RFM12_PIN(c) PIN_CHAR(SPI_CS_RFM12_ ## c ## _PIN)
                       ^
hardware/radio/rfm12/rfm12.c:42:23: note: in expansion of macro ‘_RFM12_PIN’
 #define RFM12_PIN(c)  _RFM12_PIN(c)
                       ^
hardware/radio/rfm12/rfm12.c:48:8: note: in expansion of macro ‘RFM12_PIN’
    _BV(RFM12_PIN(RFM12_IP_USE_RFM12)),
        ^
make: *** [hardware/radio/rfm12/rfm12.o] Fehler 1

Habe bei der Suche gesehen, das mein RFM69C wie ein RFM12B angeschlossen wird.
Habe aber nicht gesehen, das diese mit 3,3 V anstelle 5V versorgt werden.
Kann ich mir dann weiteres sparen, weil das Modul schon defekt ist, oder macht es Sinn weiter zu machen? Halten die die höhere Spannung aus?

/* This file has been generated by pinning m4 system automatically.
   Please do not modify it, edit the m4 scripts below pinning/ instead. */

/* code to en-/disable RS485 transmitters depending on the usart used */
#undef RS485_HAVE_TE
#undef RS485_DISABLE_TX
#undef RS485_ENABLE_TX
#undef RS485_TE_SETUP
#if ((USE_USART + 0) == 0 && defined(HAVE_RS485TE_USART0))
  #define RS485_HAVE_TE     1
  #define RS485_DISABLE_TX  PIN_CLEAR(RS485TE_USART0)
  #define RS485_ENABLE_TX   PIN_SET(RS485TE_USART0)
  #define RS485_TE_SETUP    DDR_CONFIG_OUT(RS485TE_USART0)
#elif ((USE_USART + 0) == 1 && defined(HAVE_RS485TE_USART1))
  #define RS485_HAVE_TE     1
  #define RS485_DISABLE_TX  PIN_CLEAR(RS485TE_USART1)
  #define RS485_ENABLE_TX   PIN_SET(RS485TE_USART1)
  #define RS485_TE_SETUP    DDR_CONFIG_OUT(RS485TE_USART1)
#else
  #define RS485_HAVE_TE     0
  #define RS485_DISABLE_TX  /* empty */
  #define RS485_ENABLE_TX   /* empty */
  #define RS485_TE_SETUP    /* empty */
#endif



#ifndef _PINNING_HEADER
#define _PINNING_HEADER

#define _ISC(n,m) _BV(ISC ## n ## m)
#define _paste(n,m) n ## m
#define _paste3(a,b,c) a ## b ## c

#define _PORT_CHAR(character) PORT ## character
#define PORT_CHAR(character) _PORT_CHAR(character)

#define _PIN_CHAR(character) PIN ## character
#define PIN_CHAR(character) _PIN_CHAR(character)

#define _DDR_CHAR(character) DDR ## character
#define DDR_CHAR(character) _DDR_CHAR(character)


#define DDR_CONFIG_IN(pin)  DDR_CHAR( pin ## _PORT) &= ~_BV((pin ## _PIN))
#define DDR_CONFIG_OUT(pin)  DDR_CHAR( pin ## _PORT) |= _BV((pin ## _PIN))

#define PIN_BV(pin) (_BV(pin ## _PIN))
#define PIN_NR(pin) (pin ## _PIN)
#define PIN_HIGH(pin) (PIN_CHAR(pin ## _PORT) & _BV(pin ## _PIN))
#define PIN_SET(pin) PORT_CHAR(pin ## _PORT) |= _BV(pin ## _PIN)
#define PIN_CLEAR(pin) PORT_CHAR(pin ## _PORT) &= ~_BV(pin ## _PIN)
#define PIN_TOGGLE(pin) PORT_CHAR(pin ## _PORT) ^= _BV(pin ## _PIN)
#define PIN_PULSE(pin) do { PORT_CHAR(pin ## _PORT) &= ~_BV(pin ## _PIN); \
                            PORT_CHAR(pin ## _PORT) ^=  _BV(pin ## _PIN); \
                          } while(0)


/* Configure 16 Bit timer/counter used from core/periodic.
 * Default is timer/counter unit 1, but some MCUs support
 * a second 16 Bit timer/counter unit numbered 3.
 */
#define PERIODIC_MODE_PWMFAST_OCR     TC1_MODE_PWMFAST_OCR
#define PERIODIC_PRESCALER_1          TC1_PRESCALER_1
#define PERIODIC_PRESCALER_8          TC1_PRESCALER_8
#define PERIODIC_PRESCALER_64         TC1_PRESCALER_64
#define PERIODIC_INT_COMPARE_ON       TC1_INT_COMPARE_ON
#define PERIODIC_INT_OVERFLOW_ON      TC1_INT_OVERFLOW_ON
#define PERIODIC_COUNTER_CURRENT      TC1_COUNTER_CURRENT
#define PERIODIC_COUNTER_COMPARE      TC1_COUNTER_COMPARE
#define PERIODIC_VECTOR_COMPARE       TC1_VECTOR_COMPARE
#define PERIODIC_VECTOR_OVERFLOW      TC1_VECTOR_OVERFLOW


/* spi defines */
#define SPI_MOSI_PORT B
#define SPI_MOSI_PIN 5
#define HAVE_SPI_MOSI 1



#ifdef PB5_USED
#  error Pinning Error: pinning/controllers/atmega32.m4:21: SPI_MOSI has a 
double define on PB5
#endif
#define PB5_USED 1


#define SPI_MISO_PORT B
#define SPI_MISO_PIN 6
#define HAVE_SPI_MISO 1



#ifdef PB6_USED
#  error Pinning Error: pinning/controllers/atmega32.m4:21: SPI_MISO has a 
double define on PB6
#endif
#define PB6_USED 1


#define SPI_SCK_PORT B
#define SPI_SCK_PIN 7
#define HAVE_SPI_SCK 1



#ifdef PB7_USED
#  error Pinning Error: pinning/controllers/atmega32.m4:21: SPI_SCK has a 
double define on PB7
#endif
#define PB7_USED 1


#define SPI_CS_HARDWARE_PORT B
#define SPI_CS_HARDWARE_PIN 4
#define HAVE_SPI_CS_HARDWARE 1



#ifdef PB4_USED
#  error Pinning Error: pinning/controllers/atmega32.m4:21: SPI_CS_HARDWARE has 
a double define on PB4
#endif
#define PB4_USED 1




#define ADC_CHANNELS 8

/* MCU doesn't support toggling pins by writing to PINx register */
#define PINx_TOGGLE_WORKAROUND

#define _ATMEGA32

#define _SPMCR SPMCR

/* ATmega32 specific adjustments */
#define USART0_UDRE_vect USART_UDRE_vect
#define USART0_RX_vect USART_RXC_vect
#define USART0_TX_vect USART_TXC_vect
#define UPE PE /* parity error */
#define _IVREG MCUCR
#define _EIMSK GICR
#define _EICRA MCUCR
#define ANALOG_COMP_vect ANA_COMP_vect

/* Watchdog status register */
#define MCU_STATUS_REGISTER  MCUCSR

/* Generic timer macros */
#define TC0_PRESCALER_1      {TCCR0&=~(_BV(CS02)|_BV(CS01));TCCR0|=_BV(CS00);}
#define TC0_PRESCALER_8      {TCCR0&=~(_BV(CS02)|_BV(CS00));TCCR0|=_BV(CS01);}
#define TC0_PRESCALER_64     {TCCR0&=~(_BV(CS02));TCCR0|=_BV(CS01)|_BV(CS00);}
#define TC0_PRESCALER_256    {TCCR0&=~(_BV(CS01)|_BV(CS00));TCCR0|=_BV(CS02);}
#define TC0_PRESCALER_1024   {TCCR0&=~(_BV(CS01));TCCR0|=_BV(CS02)|_BV(CS00);}

#define TC0_MODE_OFF         {TCCR0&=~(_BV(WGM01)|_BV(WGM00));}
#define TC0_MODE_PWM         {TCCR0&=~(_BV(WGM01));TCCR0|=_BV(WGM00);}
#define TC0_MODE_CTC         {TCCR0&=~(_BV(WGM00));TCCR0|=_BV(WGM01);}
#define TC0_MODE_PWMFAST     {TCCR0|=_BV(WGM01)|_BV(WGM00);}

#define TC0_OUTPUT_COMPARE_NONE   {TCCR0&=~(_BV(COM01)|_BV(COM00));}
#define TC0_OUTPUT_COMPARE_TOGGLE {TCCR0&=~(_BV(COM01));TCCR0|=_BV(COM00);}
#define TC0_OUTPUT_COMPARE_CLEAR  {TCCR0&=~(_BV(COM00));TCCR0|=_BV(COM01);}
#define TC0_OUTPUT_COMPARE_SET    {TCCR0|=_BV(COM01)|_BV(COM00);}

#define TC0_COUNTER_CURRENT  TCNT0
#define TC0_COUNTER_COMPARE  OCR0

#define TC0_INT_COMPARE_ON   TIMSK|=_BV(OCIE0);
#define TC0_INT_COMPARE_OFF  TIMSK&=~_BV(OCIE0);
#define TC0_INT_OVERFLOW_ON  TIMSK|=_BV(TOIE0);
#define TC0_INT_OVERFLOW_OFF TIMSK&=~_BV(TOIE0);

#define TC0_INT_COMPARE_TST  (TIFR&_BV(OCF0))
#define TC0_INT_COMPARE_CLR  TIFR=_BV(OCF0);
#define TC0_INT_OVERFLOW_TST (TIFR&_BV(TOV0))
#define TC0_INT_OVERFLOW_CLR TIFR=_BV(TOV0);

#define TC0_VECTOR_OVERFLOW  TIMER0_OVF_vect
#define TC0_VECTOR_COMPARE   TIMER0_COMP_vect

#define TC1_PRESCALER_1      {TCCR1B&=~(_BV(CS12)|_BV(CS11));TCCR1B|=_BV(CS10);}
#define TC1_PRESCALER_8      {TCCR1B&=~(_BV(CS12)|_BV(CS10));TCCR1B|=_BV(CS11);}
#define TC1_PRESCALER_64     {TCCR1B&=~(_BV(CS12));TCCR1B|=_BV(CS11)|_BV(CS10);}
#define TC1_PRESCALER_256    {TCCR1B&=~(_BV(CS11)|_BV(CS10));TCCR1B|=_BV(CS12);}
#define TC1_PRESCALER_1024   {TCCR1B&=~(_BV(CS11));TCCR1B|=_BV(CS12)|_BV(CS10);}

#define TC1_MODE_OFF         
{TCCR1A&=~(_BV(WGM11)|_BV(WGM10));TCCR1B&=~(_BV(WGM12));}
#define TC1_MODE_PWM         
{TCCR1A&=~(_BV(WGM11));TCCR1A|=_BV(WGM10);TCCR1B&=~(_BV(WGM12));}
#define TC1_MODE_CTC         
{TCCR1A&=~(_BV(WGM10));TCCR1A&=~(_BV(WGM11));TCCR1B|=_BV(WGM12);}
#define TC1_MODE_PWMFAST     
{TCCR1A|=_BV(WGM11)|_BV(WGM10);TCCR1B&=~(_BV(WGM12));}
#define TC1_MODE_PWMFAST_OCR 
{TCCR1A|=_BV(WGM11)|_BV(WGM10);TCCR1B|=_BV(WGM12)|_BV(WGM13);}

#define TC1_OUTPUT_COMPARE_NONE   {TCCR1A&=~(_BV(COM1A1)|_BV(COM1A0));}
#define TC1_OUTPUT_COMPARE_TOGGLE {TCCR1A&=~(_BV(COM1A1));TCCR1A|=_BV(COM1A0);}
#define TC1_OUTPUT_COMPARE_CLEAR  {TCCR1A&=~(_BV(COM1A0));TCCR1A|=_BV(COM1A1);}
#define TC1_OUTPUT_COMPARE_SET    {TCCR1A|=_BV(COM1A1)|_BV(COM1A0);}

#define TC1_COUNTER_CURRENT  TCNT1
#define TC1_COUNTER_COMPARE  OCR1A

#define TC1_INT_COMPARE_ON   TIMSK|=_BV(OCIE1A);
#define TC1_INT_COMPARE_OFF  TIMSK&=~_BV(OCIE1A);
#define TC1_INT_OVERFLOW_ON  TIMSK|=_BV(TOIE1);
#define TC1_INT_OVERFLOW_OFF TIMSK&=~_BV(TOIE1);

#define TC1_INT_OVERFLOW_TST (TIFR&_BV(TOV1))
#define TC1_INT_OVERFLOW_CLR TIFR=_BV(TOV1);

#define TC1_VECTOR_OVERFLOW  TIMER1_OVF_vect
#define TC1_VECTOR_COMPARE   TIMER1_COMPA_vect

#define TC2_PRESCALER_1      {TCCR2&=~(_BV(CS22)|_BV(CS21));TCCR2|=_BV(CS20);}
#define TC2_PRESCALER_8      {TCCR2&=~(_BV(CS22)|_BV(CS20));TCCR2|=_BV(CS21);}
#define TC2_PRESCALER_32     {TCCR2&=~(_BV(CS22));TCCR2|=_BV(CS21)|_BV(CS20);}
#define TC2_PRESCALER_64     {TCCR2&=~(_BV(CS21)|_BV(CS20));TCCR2|=_BV(CS22);}
#define TC2_PRESCALER_128    {TCCR2&=~(_BV(CS21));TCCR2|=_BV(CS20)|_BV(CS22);}
#define TC2_PRESCALER_256    {TCCR2&=~(_BV(CS20));TCCR2|=_BV(CS22)|_BV(CS21);}
#define TC2_PRESCALER_1024   {TCCR2|=_BV(CS22)|_BV(CS21)|_BV(CS20);}

#define TC2_MODE_OFF         {TCCR2&=~(_BV(WGM21)|_BV(WGM20));}
#define TC2_MODE_PWM         {TCCR2&=~(_BV(WGM21));TCCR2|=_BV(WGM20);}
#define TC2_MODE_CTC         {TCCR2&=~(_BV(WGM20));TCCR2|=_BV(WGM21);}
#define TC2_MODE_PWMFAST     {TCCR2|=_BV(WGM21)|_BV(WGM20);}

#define TC2_OUTPUT_COMPARE_NONE   {TCCR2&=~(_BV(COM21)|_BV(COM20));}
#define TC2_OUTPUT_COMPARE_TOGGLE {TCCR2&=~(_BV(COM21));TCCR2|=_BV(COM20);}
#define TC2_OUTPUT_COMPARE_CLEAR  {TCCR2&=~(_BV(COM20));TCCR2|=_BV(COM21);}
#define TC2_OUTPUT_COMPARE_SET    {TCCR2|=_BV(COM21)|_BV(COM20);}

#define TC2_COUNTER_CURRENT  TCNT2
#define TC2_COUNTER_COMPARE  OCR2

#define TC2_INT_COMPARE_ON   TIMSK|=_BV(OCIE2);
#define TC2_INT_COMPARE_OFF  TIMSK&=~_BV(OCIE2);
#define TC2_INT_OVERFLOW_ON  TIMSK|=_BV(TOIE2);
#define TC2_INT_OVERFLOW_OFF TIMSK&=~_BV(TOIE2);

#define TC2_INT_COMPARE_TST  (TIFR&_BV(OCF2))
#define TC2_INT_COMPARE_CLR  TIFR=_BV(OCF2);
#define TC2_INT_OVERFLOW_TST (TIFR&_BV(TOV2))
#define TC2_INT_OVERFLOW_CLR TIFR=_BV(TOV2);

#define TC2_VECTOR_OVERFLOW  TIMER2_OVF_vect
#define TC2_VECTOR_COMPARE   TIMER2_COMP_vect

/* First Asyncronous Timer */
/* Flag for asyncronous operation */
#define TIMER_8_AS_1_ASYNC_ON  {ASSR |= _BV(AS2);}
#define TIMER_8_AS_1_ASYNC_OFF  {ASSR &=~(_BV(AS2));}
/* Prescaler */
#define TIMER_8_AS_1_PRESCALER_1 TC2_PRESCALER_1
#define TIMER_8_AS_1_PRESCALER_8 TC2_PRESCALER_8
#define TIMER_8_AS_1_PRESCALER_32 TC2_PRESCALER_32
#define TIMER_8_AS_1_PRESCALER_64 TC2_PRESCALER_64
#define TIMER_8_AS_1_PRESCALER_128 TC2_PRESCALER_128
#define TIMER_8_AS_1_PRESCALER_256 TC2_PRESCALER_512
#define TIMER_8_AS_1_PRESCALER_1024 TC2_PRESCALER_1024
/* PWM Settings */
#define TIMER_8_AS_1_MODE_OFF TC2_MODE_OFF
#define TIMER_8_AS_1_MODE_PWM TC2_MODE_PWM
#define TIMER_8_AS_1_MODE_CTC TC2_MODE_CTC
#define TIMER_8_AS_1_MODE_PWMFAST TC2_MODE_PWMFAST
/* Output Compare */
#define TIMER_8_AS_1_OUTPUT_COMPARE_NONE TC2_OUTPUT_COMPARE_NONE
#define TIMER_8_AS_1_OUTPUT_COMPARE_TOGGLE TC2_OUTPUT_COMPARE_TOGGLE
#define TIMER_8_AS_1_OUTPUT_COMPARE_CLEAR TC2_OUTPUT_COMPARE_CLEAR
#define TIMER_8_AS_1_OUTPUT_COMPARE_SET TC2_OUTPUT_COMPARE_SET
/* Timer Register */
#define TIMER_8_AS_1_COUNTER_CURRENT TC2_COUNTER_CURRENT
#define TIMER_8_AS_1_COUNTER_COMPARE TC2_COUNTER_COMPARE
/* Interrupts / Signals */
#define TIMER_8_AS_1_INT_COMPARE_ON TC2_INT_COMPARE_ON
#define TIMER_8_AS_1_INT_COMPARE_OFF TC2_INT_COMPARE_OFF
#define TIMER_8_AS_1_INT_OVERFLOW_ON TC2_INT_OVERFLOW_ON
#define TIMER_8_AS_1_INT_OVERFLOW_OFF TC2_INT_OVERFLOW_OFF
#define TIMER_8_AS_1_INT_OVERFLOW_TST TC2_INT_OVERFLOW_TST
#define TIMER_8_AS_1_INT_OVERFLOW_CLR TC2_INT_OVERFLOW_CLR
/* Vectors */
#define TIMER_8_AS_1_VECTOR_OVERFLOW TC2_VECTOR_OVERFLOW
#define TIMER_8_AS_1_VECTOR_COMPARE TC2_VECTOR_COMPARE
/* Busy flags */
#define TIMER_8_AS_1_COMPARE_CONTROL_BUSY TCR2UB
#define TIMER_8_AS_1_COUNTER_CURRENT_BUSY TCN2UB
#define TIMER_8_AS_1_COUNTER_CURRENT_BUSY_TST 
(ASSR&_BV(TIMER_8_AS_1_COUNTER_CURRENT_BUSY))
#define TIMER_8_AS_1_COMPARE_CONTROL_BUSY_TST 
(ASSR&_BV(TIMER_8_AS_1_COMPARE_CONTROL_BUSY))
/* both tests combined */
#define TIMER_8_AS_1_COUNTER_BUSY_TST (TIMER_8_AS_1_COMPARE_CONTROL_BUSY_TST || 
TIMER_8_AS_1_COUNTER_CURRENT_BUSY_TST)



/* Timer2 - PWM Melody */
#define _PWM_MELODY_COMP TIMER2_COMP_vect
#define _PWM_MELODY_OCR OCR2
#define _PWM_MELODY_TRCCRA TCCR2
#define _PWM_MELODY_TRCCRB TCCR2
#define _PWM_MELODY_COM1 COM21
#define _PWM_MELODY_COM0 COM20
#define _PWM_MELODY_WGM0 WGM20
#define _PWM_MELODY_CS0 CS20
#define _PWM_MELODY_TIMSK TIMSK
#define _PWM_MELODY_OCIE OCIE2

#define RXD0_PORT  D
#define RXD0_PIN   0

#define TXD0_PORT  D
#define TXD0_PIN   1

/* workaround for avr-libc devs not being able to decide how these registers
 * should be named... */
#ifdef SPCR0
    #define _SPCR0 SPCR0
#else
    #define _SPCR0 SPCR
#endif

#ifdef SPE0
    #define _SPE0 SPE0
#else
    #define _SPE0 SPE
#endif

#ifdef MSTR0
    #define _MSTR0 MSTR0
#else
    #define _MSTR0 MSTR
#endif

#ifdef SPSR0
    #define _SPSR0 SPSR0
#else
    #define _SPSR0 SPSR
#endif

#ifdef SPIF0
    #define _SPIF0 SPIF0
#else
    #define _SPIF0 SPIF
#endif

#ifdef SPDR0
    #define _SPDR0 SPDR0
#else
    #define _SPDR0 SPDR
#endif

#ifdef SPI2X0
    #define _SPI2X0 SPI2X0
#else
    #define _SPI2X0 SPI2X
#endif

/* port the enc28j60 is attached to */
#define SPI_CS_RFM12_0_PORT D
#define SPI_CS_RFM12_0_PIN 5
#define HAVE_SPI_CS_RFM12_0 1



#ifdef PD5_USED
#  error Pinning Error: pinning/hardware/netio.m4:48: SPI_CS_RFM12_0 has a 
double define on PD5
#endif
#define PD5_USED 1


/* rfm12 module interrupt line */
#define RFM12_INT_PIN INT1
#define RFM12_INT_VECTOR INT1_vect

/* rfm12 ask sense interrupt line */
#define RFM12_ASKINT_PIN INT1
#define RFM12_ASKINT_ISC _ISC(1,0)
#define RFM12_ASKINT_ISCMASK (_ISC(1,0) | _ISC(1,1))
#define RFM12_ASKINT_VECTOR INT1_vect

















#define SPI_CS_NET_PORT SPI_CS_HARDWARE_PORT
#define SPI_CS_NET_PIN SPI_CS_HARDWARE_PIN
#define HAVE_SPI_CS_NET HAVE_SPI_CS_HARDWARE






  /* onewire port range */
    /* onewire port range configuration: */
  
#ifdef PD6_USED
#  error Pinning Error: pinning/hardware/netio.m4:9: ONEWIRE has a double 
define on PD6_USED
#endif
#define PD6_USED 1




#define ONEWIRE_BUSCOUNT 1
#define ONEWIRE_STARTPIN 6
#define ONEWIRE_PORT PORTD
#define ONEWIRE_DDR DDRD
#define ONEWIRE_PIN PIND
#define ONEWIRE_BUSMASK 64U










/* port the rfm12 module CS is attached to */


#define PORTIO_MASK_A 255
#define PORTIO_MASK_B 15
#define PORTIO_MASK_C 255
#define PORTIO_MASK_D 159
#define PORTIO_MASK_E 255
#define PORTIO_MASK_F 255
#define PORTIO_MASK_G 255

#define DDR_MASK_A 0
#define DDR_MASK_B 176
#define DDR_MASK_C 0
#define DDR_MASK_D 96
#define DDR_MASK_E 0
#define DDR_MASK_F 0
#define DDR_MASK_G 0

#endif /* _PINNING_HEADER */
#
# Automatically generated by make menuconfig: don't edit
#

#
# General Setup
#
ARCH=ARCH_AVR
ARCH_AVR=y
# ARCH_HOST is not set
# atmega8 is not set
# atmega88 is not set
# atmega128 is not set
# atmega16 is not set
# atmega162 is not set
# atmega168 is not set
# atmega168p is not set
# atmega169 is not set
MCU=atmega32
atmega32=y
# atmega328p is not set
# atmega64 is not set
# atmega644 is not set
# atmega644p is not set
# atmega1284p is not set
# at90can32 is not set
# at90can64 is not set
# at90can128 is not set
FREQ=16000000
# alpengluehn is not set
# antares_I is not set
# antares_IO is not set
# antares_O is not set
# Arduino_Duemilanove is not set
# beteigeuze is not set
# conrad_probot is not set
# ehaserl is not set
# etherrape is not set
# Fimser is not set
# fnordlicht_servo is not set
# generic_usb_teensy is not set
# hr20 is not set
# Jackalope is not set
# JeeLinkv2 is not set
# lome6 is not set
# MicroWebServer is not set
# netio_addon is not set
# netio_bsbport is not set
HARDWARE=netio
netio=y
# other is not set
# pollin_evalboard_addon is not set
# pollin_evalboard is not set
# pollin_funkevalboard is not set
# radig_web is not set
# thermy is not set
# USBrfm12stick is not set
# volkszaehler_so_server is not set
# CPU_SLEEP is not set
# SRAM_SUPPORT is not set
# SRAM_MEMTEST_ON_BOOT is not set
# BOOTLOADER_SUPPORT is not set
# BOOTLOADER_JUMP is not set
BOOTLOADER_SIZE=0
BOOTLOADER_START_ADDRESS=0x8000
FLASH_SIZE=0x8000
EEPROM_SIZE=0x400
RAM_SIZE=0x800
FLASH_PAGESIZE=0x80
EEPROM_PAGESIZE=0x4
# CRC_PAD_SUPPORT is not set
# MBR_SUPPORT is not set
# TEENSY_SUPPORT is not set
# SPI_TIMEOUT is not set
# USART_SPI_SUPPORT is not set
# SOFT_SPI_SUPPORT is not set
GIT_VERSION=""
# DEBUG_DISCARD_SOME is not set
# DEBUG is not set
# DEBUG_USE_SYSLOG is not set
# DEBUG_SERIAL_USART_SUPPORT is not set
# SOFT_UART_SUPPORT is not set
# DEBUG_HOOK is not set
# DEBUG_RESET_REASON is not set

#
# Periodic / Scheduler
#
CONF_MTICKS_PER_SEC=50
# PERIODIC_TIMER3_SUPPORT is not set
CONF_PERIODIC_USE_TIMER=1
# PERIODIC_TIMER_API_SUPPORT is not set
# PERIODIC_ADJUST_SUPPORT is not set
# DEBUG_PERIODIC is not set
# DEBUG_PERIODIC_ECMD_SUPPORT is not set
# DEBUG_PERIODIC_WAVEFORMS_SUPPORT is not set
# DEBUG_PERIODIC_OC1A_SUPPORT is not set
# SCHEDULER_SUPPORT is not set
# SCHEDULER_DYNAMIC_SUPPORT is not set
CONF_SCHEDULER_NUM_DYNAMIC_TIMERS=8
# DEBUG_SCHEDULER_SUPPORT is not set
# STATUSLEDS is not set
# STATUSLED_POWER_SUPPORT is not set
# STATUSLED_BOOTED_SUPPORT is not set
# STATUSLED_NETLINK_SUPPORT is not set
# STATUSLED_TX_SUPPORT is not set
# STATUSLED_RFM12_TX_SUPPORT is not set
# STATUSLED_ZBUS_TX_SUPPORT is not set
# STATUSLED_IRMP_TX_SUPPORT is not set
# STATUSLED_EMS_TX_SUPPORT is not set
# STATUSLED_RX_SUPPORT is not set
# STATUSLED_RFM12_RX_SUPPORT is not set
# STATUSLED_ZBUS_RX_SUPPORT is not set
# STATUSLED_IRMP_RX_SUPPORT is not set
# STATUSLED_EMS_RX_OK_SUPPORT is not set
# STATUSLED_ERROR_SUPPORT is not set
# STATUSLED_EMS_RX_FAIL_SUPPORT is not set
# STATUSLED_HB_ACT_SUPPORT is not set
# STATUSLED_HEARTBEAT_SUPPORT is not set
# STATUSLED_RFM12_TX_ACT_SUPPORT is not set
# STATUSLED_RFM12_RX_ACT_SUPPORT is not set
# STATUSLED_ZBUS_TX_ACT_SUPPORT is not set
# STATUSLED_ZBUS_RX_ACT_SUPPORT is not set
# STATUSLED_EMS_TX_ACT_SUPPORT is not set
# STATUSLED_EMS_RX_ACT_SUPPORT is not set
# STATUSLED_ECMD_ACT_SUPPORT is not set
# CRYPTO_SUPPORT is not set
# CAST5_SUPPORT is not set
# MD5_SUPPORT is not set
# SHA1_SUPPORT is not set
VFS_SUPPORT=y
# VFS_DF_SUPPORT is not set
VFS_INLINE_SUPPORT=y
# CONFIG_INLINE_SUPPORT is not set
# VFS_CONFIG_INLINE_SUPPORT is not set
# MOTD_INLINE_SUPPORT is not set
RADIO_INLINE_SUPPORT=y
# I2C_INLINE_SUPPORT is not set
VFS_IO_INLINE_SUPPORT=y
# KTY_INLINE_SUPPORT is not set
ADC_INLINE_SUPPORT=y
ONEWIRE_INLINE_SUPPORT=y
# HAT_INLINE_SUPPORT is not set
# CAMERA_INLINE_SUPPORT is not set
# NAMED_PIN_INLINE_SUPPORT is not set
# STELLA_INLINE_SUPPORT is not set
# MOTORCURTAIN_INLINE_SUPPORT is not set
# MSR1_INLINE_SUPPORT is not set
# TO1_INLINE_SUPPORT is not set
# MCUF_INLINE_SUPPORT is not set
# UPNP_INLINE_SUPPORT is not set
# LCD_INLINE_SUPPORT is not set
# NMEA_INLINE_SUPPORT is not set
# PWM_SERVO_INLINE_SUPPORT is not set
# CW_INLINE_SUPPORT is not set
# DMX_STORAGE_INLINE_SUPPORT is not set
# WOL_INLINE_SUPPORT is not set
VFS_INLINE_INLINESVG_SUPPORT=y
# VFS_INLINE_HTML5_RANGE_FF_SUPPORT is not set
# VFS_INLINE_HTML_CLEAN_SUPPORT is not set
# VFS_INLINE_OBSOLETE_BROWSER_SUPPORT is not set
# DEBUG_INLINE_DUMMY is not set
# DEBUG_INLINE_GZ is not set
# DEBUG_INLINE_DISABLE_GZ is not set
VFS_INLINE_INLINESVG_SUPPORT=y
# VFS_HOST_SUPPORT is not set
# VFS_SD_SUPPORT is not set
# VFS_EEPROM_SUPPORT is not set
# VFS_EEPROM_RAW_SUPPORT is not set
# VFS_DC3840_SUPPORT is not set
# DATAFLASH_SUPPORT is not set
# DEBUG_FS is not set
# DEBUG_FS_INODETABLE is not set
# DEBUG_FS_MARK is not set
# VFS_EEPROM_DEBUG_SUPPORT is not set
# PAM_SUPPORT is not set
# CONTROL6_SUPPORT is not set

#
# Network
#
CONF_HOSTNAME="NETIO_01"
NET_MAX_FRAME_LENGTH=500
ENC28J60_SUPPORT=y
CONF_ENC_MAC="00:22:f9:01:0c:65"
# IPV6_STATIC_SUPPORT is not set
CONF_ENC_IP="192.168.2.5"
CONF_ENC_IP4_NETMASK="255.255.255.0"
# IEEE8021Q_SUPPORT is not set
CONF_ENC_ECOCON=ECOCON_UNSET
ECOCON_UNSET=y
# ECOCON_6 is not set
# ECOCON_4 is not set
# ECOCON_3 is not set
# ECOCON_2 is not set
# ECOCON_1 is not set
# ECOCON_0 is not set
# DEBUG_ENC28J60 is not set
# DEBUG_INTERRUPT is not set
# DEBUG_REV4_WORKAROUND is not set
ETHERNET_SUPPORT=y
# TAP_SUPPORT is not set
CONF_TAP_MAC="ac:de:48:fd:0f:d0"
# IPV6_STATIC_SUPPORT is not set
CONF_TAP_IP="192.168.23.244"
CONF_TAP_IP4_NETMASK="255.255.255.0"
CONF_TAP_LOCALIP="192.168.23.1"
# IEEE8021Q_SUPPORT is not set
RFM12_IP_SUPPORT=y
# RFM12_IP_RFM12_0 is not set
# RFM12_IP_RFM12_1 is not set
# RFM12_IP_RFM12_2 is not set
CONF_RFM12_FREQ=RFM12_FREQ_433920
RFM12_FREQ_433920=y
# RFM12_FREQ_869775 is not set
# RFM12_FREQ_869800 is not set
# RFM12_FREQ_869825 is not set
# RFM12_FREQ_869850 is not set
# RFM12_FREQ_869875 is not set
# RFM12_FREQ_869900 is not set
# RFM12_FREQ_869925 is not set
# CONF_RFM12_SLOW_SPI is not set
# CONF_RFM12B_SUPPORT is not set
CONF_RFM12_BAUD=19200
CONF_RFM12_IP="192.168.5.1"
CONF_RFM12_IP4_NETMASK="255.255.255.0"
# RFM12_SOURCE_ROUTE_ALL is not set
# RFM12_PCKT_FWD is not set
# RFM12_ARP_PROXY is not set
# RFM12_RAW_SUPPORT is not set
# USB_SUPPORT is not set
# USB_KEYBOARD_SUPPORT is not set
# USB_HID_KEYBOARD_SEQUENCE_SUPPORT is not set
# USB_HID_KEYBOARD_STATIC_SUPPORT is not set
# USB_HID_KEYBOARD_ECMD_SUPPORT is not set
# USB_MOUSE_SUPPORT is not set
# USB_MOUSE_SEQUENCE_SUPPORT is not set
# USB_NET_SUPPORT is not set
# DEBUG_USB_HID_KEYBOARD is not set
# DEBUG_USB_HID_MOUSE is not set
# ZBUS_SUPPORT is not set
# ZBUS_RAW_SUPPORT is not set
ROUTER_SUPPORT=y
UIP_SUPPORT=y
NET_SUPPORT=y
# IPV6_SUPPORT is not set
IPV4_SUPPORT=y
# IP_FORWARDING_SUPPORT is not set
# UIP_TIMEOUT_SUPPORT is not set
CONF_ETHERSEX_GATEWAY="192.168.2.1"
UIP_MULTI_STACK=y
# IPCHAIR_SUPPORT is not set
# IPCHAIR_MASQ is not set
TCP_SUPPORT=y
# UDP_SUPPORT is not set
# BROADCAST_SUPPORT is not set
ICMP_SUPPORT=y
# DNS_SUPPORT is not set
CONF_DNS_SERVER="192.168.23.254"
# BOOTP_SUPPORT is not set
# BOOTP_TO_EEPROM_SUPPORT is not set
# DHCP_SUPPORT is not set
# OPENVPN_SUPPORT is not set
CONF_OPENVPN_KEY=00000000000000000000000000000000
CONF_OPENVPN_HMAC_KEY=00000000000000000000000000000000
CONF_OPENVPN_IP="0.0.0.0"
CONF_OPENVPN_IP4_NETMASK="255.255.255.0"
# OPENVPN_STATIC_REMOTE is not set
CONF_OPENVPN_PORT=1194
# DEBUG_NET is not set
# DEBUG_NET_CONFIG is not set
# DEBUG_NET_IP6 is not set
# DEBUG_OPENVPN is not set
# DEBUG_ROUTER is not set
# DEBUG_UIP is not set
# DEBUG_UNKNOWN_PACKETS is not set

#
# I/O
#
# CONFIG_IO_NONE is not set
PORTIO_SCHEME=PORTIO_SIMPLE
PORTIO_SIMPLE=y
# PORTIO_FULL_FEATURED is not set
PORTIO_SIMPLE_SUPPORT=y
# PORTIO_SUPPORT is not set
# NAMED_PIN_SUPPORT is not set
# TTY_SUPPORT is not set
TTY_COLS=16
TTY_LINES=4
# TTY_LL_HD44780 is not set
# TTY_LL_S1D15G10 is not set
# TTY_LL_S1D13305 is not set
# TTY_LL_VT100_TELNET is not set
# DEBUG_TTY_LAYER is not set

#
# Port expansion
#
# HC595_SUPPORT is not set
HC595_REGISTERS=5
# HC165_SUPPORT is not set
# HC165_INVERSE_OUTPUT is not set
HC165_REGISTERS=1
# SMS_SUPPORT is not set
SMS_USART_0=y
SMS_USE_USART=0
# DEBUG_SMS is not set

#
# ADC / DAC
#
ADC_SUPPORT=y
CONFIG_ADC_AREF=y
# CONFIG_ADC_AVCC is not set
# CONFIG_ADC_1_1 is not set
# CONFIG_ADC_2_56 is not set
ADC_REF=ADC_AREF
# HR20_TEMP_SUPPORT is not set
# ADC_VOLTAGE_SUPPORT is not set
NEED_TEMP2TEXT=y
# KTY_SUPPORT is not set
# ADS7822_SUPPORT is not set
# DAC_SUPPORT is not set
# TLC5620_SUPPORT is not set
# LTC1257_SUPPORT is not set
CONF_LTC1257_NUM_DEVICES=4
# DEBUG_LTC1257_CORE is not set
# DEBUG_LTC1257_ECMD is not set

#
# LCD Displays
#
# HD44780_SUPPORT is not set
# HD44780_BACKLIGHT_INV is not set
# HR20_LCD_SUPPORT_FULL is not set
# S1D15G10_SUPPORT is not set
# ST7626_SUPPORT is not set
# S1D13305_SUPPORT is not set
# DEBUG_S1D13305 is not set
# LCD_SUPPORT is not set
# DEBUG_HD44780 is not set
# DEBUG_LCD_MENU is not set

#
# Storage
#
# SD_READER_SUPPORT is not set
# SER_RAM_SUPPORT is not set

#
# I2C
#
# I2C_MASTER_SUPPORT is not set
# I2C_DETECT_SUPPORT is not set
# I2C_GENERIC_SUPPORT is not set
# I2C_24CXX_SUPPORT is not set
# I2C_LM75_SUPPORT is not set
# I2C_TMP175_SUPPORT is not set
# I2C_DS1631_SUPPORT is not set
# I2C_DS13X7_SUPPORT is not set
# I2C_PCF8583_SUPPORT is not set
# I2C_TSL2550_SUPPORT is not set
# I2C_TSL2561_SUPPORT is not set
# I2C_BMP085_SUPPORT is not set
# I2C_PCA9531_SUPPORT is not set
# I2C_PCA9685_SUPPORT is not set
# I2C_PCF8574X_SUPPORT is not set
# I2C_PCA9555_SUPPORT is not set
# I2C_MAX7311_SUPPORT is not set
# I2C_MCP23017_SUPPORT is not set
# I2C_UDP_SUPPORT is not set
# DEBUG_I2C is not set
# I2C_SLAVE_SUPPORT is not set
# DEBUG_I2C_SLAVE is not set
# CAMERA_SUPPORT is not set
# DC3840_SUPPORT is not set
# CONFIG_DC3840_RES80 is not set
# CONFIG_DC3840_RES160 is not set
# CONFIG_DC3840_RES320 is not set
# CONFIG_DC3840_RES640 is not set
# DC3840_HIGH_COMPRESSION is not set
# DC3840_BLACK_WHITE is not set
DC3840_USART_0=y
DC3840_USE_USART=0
# DC3840_UDP_DEBUG is not set

#
# Radio
#
# FS20_SUPPORT is not set
# FS20_SEND_SUPPORT is not set
# FHT_SEND_SUPPORT is not set
# FS20_RECEIVE_SUPPORT is not set
# FS20_RECEIVE_SENDER is not set
CONF_FS20_SERVICE="merkur"
CONF_FS20_PORT=2701
# FS20_RECEIVE_WS300_SUPPORT is not set
# DEBUG_FS20_REC is not set
# DEBUG_ECMD_FS20 is not set
# DEBUG_FS20_REC_QUEUE is not set
# DEBUG_FS20_REC_VERBOSE is not set
# DEBUG_FS20_SENDER is not set
# DEBUG_FS20_WS300 is not set
# DEBUG_FS20_WS300_VERBOSE is not set
RFM12_ASK_SUPPORT=y
RFM12_ASK_433_SUPPORT=y
RFM12_ASK_433_RFM12_0=y
# RFM12_ASK_433_RFM12_1 is not set
# RFM12_ASK_433_RFM12_2 is not set
RFM12_ASK_433_USE_RFM12=0
# RFM12_ASK_EXTERNAL_FILTER_SUPPORT is not set
# RFM12_ASK_SENSING_SUPPORT is not set
# RFM12_ASK_868_SUPPORT is not set
# DEBUG_ASK_SENSE is not set
# GENERIC_ASK_SUPPORT is not set

#
# IR Receivers
#
# RC5_SUPPORT is not set
# RC5_SUPPORT is not set
# RC5_UDP_SUPPORT is not set
CONF_RC5_SERVER="192.168.100.3"
# DEBUG_RC5 is not set
# IRMP_SUPPORT is not set
# IRMP_RX_SUPPORT is not set
# IRMP_TX_SUPPORT is not set
# IRMP_EXTERNAL_MODULATOR is not set
# IRMP_ECMD is not set
# IRMP_SUPPORT_SIRCS_PROTOCOL is not set
# IRMP_SUPPORT_NEC_PROTOCOL is not set
# IRMP_SUPPORT_NEC16_PROTOCOL is not set
# IRMP_SUPPORT_NEC42_PROTOCOL is not set
# IRMP_SUPPORT_JVC_PROTOCOL is not set
# IRMP_SUPPORT_SAMSUNG_PROTOCOL is not set
# IRMP_SUPPORT_SAMSUNG48_PROTOCOL is not set
# IRMP_SUPPORT_MATSUSHITA_PROTOCOL is not set
# IRMP_SUPPORT_KASEIKYO_PROTOCOL is not set
# IRMP_SUPPORT_DENON_PROTOCOL is not set
# IRMP_SUPPORT_RECS80_PROTOCOL is not set
# IRMP_SUPPORT_RECS80EXT_PROTOCOL is not set
# IRMP_SUPPORT_RC5_PROTOCOL is not set
# IRMP_SUPPORT_RC6_PROTOCOL is not set
# IRMP_SUPPORT_RC6A_PROTOCOL is not set
# IRMP_SUPPORT_NUBERT_PROTOCOL is not set
# IRMP_SUPPORT_BANG_OLUFSEN_PROTOCOL is not set
# IRMP_SUPPORT_GRUNDIG_PROTOCOL is not set
# IRMP_SUPPORT_NOKIA_PROTOCOL is not set
# IRMP_SUPPORT_SIEMENS_PROTOCOL is not set
# IRMP_SUPPORT_FDC_PROTOCOL is not set
# IRMP_SUPPORT_RCCAR_PROTOCOL is not set
# IRMP_SUPPORT_NIKON_PROTOCOL is not set
# IRMP_SUPPORT_RUWIDO_PROTOCOL is not set
# IRMP_SUPPORT_IR60_PROTOCOL is not set
# IRMP_SUPPORT_KATHREIN_PROTOCOL is not set
# IRMP_SUPPORT_NETBOX_PROTOCOL is not set
# IRMP_SUPPORT_LEGO_PROTOCOL is not set
# IRMP_SUPPORT_THOMSON_PROTOCOL is not set
# IRMP_SUPPORT_BOSE_PROTOCOL is not set
# IRMP_SUPPORT_A1TVBOX_PROTOCOL is not set
# IRMP_SUPPORT_ORTEK_PROTOCOL is not set
# IRMP_SUPPORT_TELEFUNKEN_PROTOCOL is not set
# IRMP_SUPPORT_ROOMBA_PROTOCOL is not set
# IRMP_SUPPORT_RCMM_PROTOCOL is not set
# IRMP_SUPPORT_LGAIR_PROTOCOL is not set
# IRMP_SUPPORT_RADIO1_PROTOCOL is not set
# REMOTE_IRMP_SUPPORT is not set
REMOTE_IRMP_PORT=10001
# DEBUG_IRMP is not set
# DEBUG_REMOTE_IRMP is not set
# PSB2186_SUPPORT is not set
ONEWIRE_SUPPORT=y
ONEWIRE_DETECT_SUPPORT=y
# ONEWIRE_DS2502_SUPPORT is not set
# ONEWIRE_DS2450_SUPPORT is not set
ONEWIRE_DETECT_ECMD_SUPPORT=y
# ONEWIRE_POLLING_SUPPORT is not set
# ONEWIRE_NAMING_SUPPORT is not set
# ONEWIRE_SNMP_SUPPORT is not set
# DEBUG_ECMD_OW_ROM is not set
# DEBUG_ECMD_OW_LIST is not set
# DEBUG_OW_DS2450_CORE is not set
# DEBUG_OW_DS2450_ECMD is not set
# DEBUG_OW_POLLING is not set
# HR20_INPUT_SUPPORT is not set
# PS2_SUPPORT is not set
# PS2_GERMAN_LAYOUT is not set
# DEBUG_PS2 is not set
# BUTTONS_INPUT_SUPPORT is not set

#
# Humidity & temperature sensors
#
# SHT_SUPPORT is not set
# DHT_SUPPORT is not set
# ZACWIRE_SUPPORT is not set
# ZACWIRE_RAW_SUPPORT is not set
# ZACWIRE_CONVERT306_SUPPORT is not set
# ZACWIRE_CONVERT506_SUPPORT is not set
# ULTRASONIC_SUPPORT is not set
# DEBUG_ULTRASONIC is not set
# HBRIDGE_SUPPORT is not set
# DUAL_HBRIDGE_SUPPORT is not set
# SHARE_ENABLE_HBRIDGE_SUPPORT is not set
# HBRIDGE_INVERTER_SUPPORT is not set
# DEBUG_HBRIDGE is not set
# MCUF_SUPPORT is not set
# MCUF_SERIAL_SUPPORT is not set
MCUF_USART_0=y
MCUF_USE_USART=0
# MCUF_OUTPUT_SUPPORT is not set
# BLP_SUPPORT is not set
# LEDRG_SUPPORT is not set
# MCUF_SERIAL_WORKAROUND_FOR_BAD_MCUF_UDP_PACKETS is not set
# MCUF_SCROLLTEXT_SUPPORT is not set
CONF_MCUF_SCROLLTEXT_STARTUP="Hi I am your ethersex ;-) "
CONF_MCUF_SCROLLTEXT_STARTUP_COLOR=240
CONF_MCUF_SCROLLTEXT_STARTUP_BG_COLOR=1
CONF_MCUF_SCROLLTEXT_STARTUP_SPEED=2
# MCUF_CLOCK_SUPPORT is not set
# MCUF_CLOCK_AUTOSTART_SUPPORT is not set
# MCUF_MODUL_SUPPORT is not set
# MCUF_MODUL_CRON_SUPPORT is not set
# MCUF_MODUL_DISPLAY_MODE_CRON_SEQUENCE is not set
MCUF_MODUL_DISPLAY_MODE_CRON=MCUF_MODUL_DISPLAY_MODE_CRON_RANDOM
MCUF_MODUL_DISPLAY_MODE_CRON_RANDOM=y
# MCUF_MODUL_DISPLAY_MODE_SUPPORT is not set
# MCUF_MODUL_DISPLAY_MODE_SEQUENCE is not set
MCUF_MODUL_DISPLAY_MODE=MCUF_MODUL_DISPLAY_MODE_RANDOM
MCUF_MODUL_DISPLAY_MODE_RANDOM=y
# MCUF_MODUL_DISPLAY_MODE_MANUAL is not set
# MCUF_TEST_GAME_INPUT is not set
# MCUF_CHESS_SUPPORT is not set
# MCUF_BOX_SUPPORT is not set
# MCUF_CLEAN_SUPPORT is not set
# MCUF_SPIRAL_SUPPORT is not set
# MCUF_IMAGE_SUPPORT is not set
# MCUF_MODUL_BORG16_SUPPORT is not set
# MCUF_MODUL_BORG16_XONI_STUDY_SUPPORT is not set
# MCUF_MODUL_BORG16_SNAKE_SUPPORT is not set
# MCUF_MODUL_BORG16_SNAKE_INTERACTIVE_SUPPORT is not set
# DEBUG_MCUF is not set

#
# Protocols
#
# NET_MAX_FRAME_LENGTH_GT_571 is not set
# ARTNET_SUPPORT is not set
CONF_ARTNET_PORT=6454
CONF_ARTNET_INUNIVERSE=1
CONF_ARTNET_OUTUNIVERSE=0
# DEBUG_ARTNET is not set
# DALI_SUPPORT is not set
# DALI_RAW_SUPPORT is not set
# DALI_RECEIVE_SUPPORT is not set
# DMX_SUPPORT is not set
DMX_OUTPUT_UNIVERSE=1
DMX_USART_0=y
DMX_USE_USART=0
ECMD_PARSER_SUPPORT=y
# ECMD_REMOVE_BACKSPACE_SUPPORT is not set
# ALIASCMD_SUPPORT is not set
# ECMD_PAM_SUPPORT is not set
# ECMD_SCRIPT_SUPPORT is not set
# ECMD_LOG_VIA_SYSLOG is not set
# ECMD_SERIAL_USART_SUPPORT is not set
ECMD_TCP_SUPPORT=y
ECMD_TCP_PORT=2701
# ECMD_UDP_SUPPORT is not set
# ECMD_SERIAL_I2C_SUPPORT is not set
# ECMD_USB_SUPPORT is not set
# ECMD_JABBER_SUPPORT is not set
# ECMD_IRC_SUPPORT is not set
# ECMD_SMS_SUPPORT is not set
# ECMD_EEPROM_SUPPORT is not set
# ECMD_SENDER_SUPPORT is not set
# UECMD_SENDER_SUPPORT is not set
# DISABLE_IPCONF_SUPPORT is not set
# DISABLE_REBOOT_SUPPORT is not set
# IPSTATS_SUPPORT is not set
# FREE_SUPPORT is not set
# ECMD_MIRROR_REQUEST is not set
# DEBUG_ECMD is not set
# DEBUG_ECMD_FS20 is not set
# DEBUG_ECMD_IP is not set
# DEBUG_ECMD_MAC is not set
# DEBUG_ECMD_NET is not set
# DEBUG_ECMD_OW_LIST is not set
# DEBUG_ECMD_OW_ROM is not set
# DEBUG_ECMD_PORTIO is not set
# DEBUG_ECMD_RC5 is not set
# DEBUG_ECMD_SCRIPT is not set
# ELTAKOMS_SUPPORT is not set
# ELTAKOMS_USART_0 is not set
# DEBUG_ELTAKOMS is not set
# EMS_SUPPORT is not set
EMS_BUFFER_LEN=64
EMS_PORT=7950
# EMS_USART_0 is not set
# EMS_DEBUG_STATS is not set
# EMS_PROTO_DEBUG is not set
# EMS_IO_DEBUG is not set
# EMS_ERROR_DEBUG is not set
# FNORDLICHT_BASIC_SUPPORT is not set
FNORDLICHT_BAUDRATE=19200
# FNORDLICHT_USART_0 is not set
# FNORDLICHT_SUPPORT is not set
CONF_FNORDLICHTER=1
# FNORDLICHT_SERVO_SUPPORT is not set
# DEBUG_FNORDLICHT is not set
# HTTPLOG_SUPPORT is not set
CONF_HTTPLOG_SERVICE="volkszaehler.org"
CONF_HTTPLOG_PATH="/httplog/httplog.php"
# CONF_HTTPLOG_INCLUDE_TIMESTAMP is not set
# CONF_HTTPLOG_INCLUDE_UUID is not set
CONF_HTTPLOG_UUID="12345678-9ABC-DEF0-1234-56789ABCDEF0"
HTTPLOG_BUFFER_LEN=140
# DEBUG_HTTPLOG is not set
# IRC_SUPPORT is not set
CONF_IRC_IP="192.168.23.254"
CONF_IRC_PORT=6667
CONF_IRC_CHANNEL="ethersex"
CONF_IRC_USERNAME="ethersex"
CONF_IRC_NICKNAME="ethersex"
CONF_IRC_REALNAME="Ethersex Wollmilchsau"
# IRC_GREET_SUPPORT is not set
# DEBUG_IRC is not set
# MDNS_SD_SUPPORT is not set
# MODBUS_SUPPORT is not set
# MQTT_SUPPORT is not set
MQTT_CALLBACK_SLOTS=1
# MQTT_STATIC_CONF is not set
# MQTT_DEBUG is not set
# MQTT_PARSE_DEBUG is not set
# MYSQL_SUPPORT is not set
CONF_MYSQL_IP="192.168.23.254"
CONF_MYSQL_USERNAME="root"
CONF_MYSQL_PASSWORD="password"
CONF_MYSQL_SCHEMA="mavisdb"
# DEBUG_MYSQL is not set
# NETSTAT_SUPPORT is not set
CONF_NETSTAT_SERVICE_IP="188.40.33.175"
CONF_NETSTAT_SERVICE="ethersex.de"
CONF_NETSTAT_API="/~habo/stat/"
# DEBUG_NETSTAT is not set

#
# Radio
#
# RADIO_HW_868 is not set
# PROTO_FS20_SUPPORT is not set
# RFM12_ASK_FS20_TX_SUPPORT is not set
# RFM12_ASK_FS20_RX_SUPPORT is not set
# RFM12_ASK_FHT_SUPPORT is not set
# RFM12_ASK_ESA_SUPPORT is not set
# RFM12_ASK_TX3_SUPPORT is not set
# RFM12_ASK_FS20_SYSLOG is not set
# RFM12_ASK_FS20_SUPPORT is not set
# DEBUG_ASK_FS20 is not set
RADIO_HW_ASK=y
PROTO_ASK_SUPPORT=y
ASK_HARDWARE=ASK_HARDWARE_RFM12
ASK_HARDWARE_RFM12=y
PROTO_2272_SUPPORT=y
PROTO_1527_SUPPORT=y
# PROTO_TEVION_SUPPORT is not set
PROTO_INTERTECHNO_SUPPORT=y
# PROTO_INTERTECHNO_SL_SUPPORT is not set
PROTO_OASEFMMASTER_SUPPORT=y
# PROTO_FA20RF_SUPPORT is not set
# PROTO_SMOKEDETECTOR_SUPPORT is not set
# SIP_SUPPORT is not set
CONF_SIP_PROXY_IP="192.168.178.1"
CONF_SIP_FROM="621"
CONF_SIP_TO="622"
CONF_SIP_AUTH_USER="621"
CONF_SIP_AUTH_PASS="tester"
# DEBUG_SIP is not set
# SOAP_SUPPORT is not set
# SNMP_SUPPORT is not set
# SENDMAIL_SUPPORT is not set
CONF_SENDMAIL_IP="78.47.210.246"
CONF_SENDMAIL_FROM="r...@sex.metafnord.de"
CONF_SENDMAIL_TO="ste...@brokenpipe.de"
# SENDMAIL_AUTH_SUPPORT is not set
# DEBUG_SENDMAIL is not set
# SMS77_SUPPORT is not set
CONF_SMS77_SERVICE="gateway.sms77.de"
CONF_SMS77_USER=""
CONF_SMS77_PASS=""
CONF_SMS77_TO=""
CONF_SMS77_TYPE_CHOICE=CONF_SMS77_TYPE_BASICPLUS
CONF_SMS77_TYPE_BASICPLUS=y
# CONF_SMS77_TYPE_STANDARD is not set
# CONF_SMS77_TYPE_QUALITY is not set
# CONF_SMS77_TYPE_FESTNETZ is not set
# CONF_SMS77_TYPE_FLASH is not set
CONF_SMS77_TYPE="basicplus"
# SMS77_EEPROM_SUPPORT is not set
# DEBUG_SMS77 is not set
# SYSLOG_SUPPORT is not set
CONF_SYSLOG_SERVER="192.168.23.73"
# TWITTER_SUPPORT is not set
CONF_TWITTER_SERVICE="identi.ca"
CONF_TWITTER_API="/api"
CONF_TWITTER_USERNAME="ethersex"
CONF_TWITTER_PASSWORD=""
CONF_TWITTER_AUTH="ZXRoZXJzZXg6"
# DEBUG_TWITTER is not set
# USTREAM_SUPPORT is not set
CONF_USTREAM_IP="205.188.234.7"
CONF_USTREAM_PORT=80
# DEBUG_USTREAM is not set
# YPORT_SUPPORT is not set
YPORT_USART_0=y
YPORT_USE_USART=0
YPORT_PORT=7970
YPORT_BAUDRATE=115200
YPORT_USART_CONFIG=YPORT_USART_CONFIG_8N1
YPORT_USART_CONFIG_8N1=y
# YPORT_USART_CONFIG_8E2 is not set
YPORT_BUFFER_LEN=32
YPORT_FLUSH=25
# DEBUG_YPORT is not set
# BSBPORT_SUPPORT is not set
# BSBPORT_USART_0 is not set
BSBPORT_PORT=3000
BSBPORT_BAUDRATE=4800
BSBPORT_BUFFER_LEN=500
BSBPORT_FLUSH=25
BSBPORT_MESSAGE_BUFFER_LEN=10
BSBPORT_MESSAGE_MAX_LEN=25
BSBPORT_OWNADDRESS=7
# BSBPORT_POLLING_SUPPORT is not set
# BSBPORT_MQTT_SUPPORT is not set
# DEBUG_BSBPORT_RX is not set
# DEBUG_BSBPORT_TX is not set
# DEBUG_BSBPORT_ECMD is not set
# DEBUG_BSBPORT_MQTT is not set
# MSR1_SUPPORT is not set
MSR1_USART_0=y
MSR1_USE_USART=0
# DEBUG_MSR1 is not set
# TO1_SUPPORT is not set
TO1_USART_0=y
TO1_USE_USART=0
TO1_SENSOR_COUNT=1
# DEBUG_TO1 is not set
# SERIAL_LINE_LOG_SUPPORT is not set
# SERIAL_LINE_LOG_USART_0 is not set
SERIAL_LINE_LOG_TIMEOUT=20
SERIAL_LINE_LOG_EOL=0A
SERIAL_LINE_LOG_COUNT=60
SERIAL_LINE_LOG_BAUDRATE=9600
# SERIAL_LINE_LOG_SPACE_COMPRESSION is not set
# NMEA_SUPPORT is not set
NMEA_USART_0=y
NMEA_USE_USART=0
# STELLA_PROTOCOL_SUPPORT is not set
UDP_STELLA_PORT=2702
# IOUDP_PROTOCOL_SUPPORT is not set
UDP_IO_PORT=2703
# MOTORCURTAIN_PROTOCOL_SUPPORT is not set
UDP_MOTORCURTAIN_PORT=2704
# CW_SUPPORT is not set
CW_WPM=12
# CW_BOOT_SUPPORT is not set
# CW_BEACON_SUPPORT is not set
# CW_PIN_SUPPORT is not set
# CW_PWM_FREQ_SUPPORT is not set
# CW_RFM12_ASK_SUPPORT is not set
# DEBUG_CW is not set
# SGC_SUPPORT is not set
# SGC_USART_0 is not set
SGC_BAUDRATE=9600
# SGC_SHDN_SLEEP_ACTIVE is not set
SGC_SLEEPMODE=0
# SGC_TIMEOUT_COUNTER_SUPPORT is not set
# SGC_ECMD_SEND_SUPPORT is not set

#
# Applications
#
# APP_SAMPLE_SUPPORT is not set
# APP_SAMPLE_INIT_AUTOSTART_SUPPORT is not set
# APP_SAMPLE_PERIODIC_AUTOSTART_SUPPORT is not set
# DEBUG_APP_SAMPLE is not set
# BULBDIAL_SUPPORT is not set
# DEBUG_BULBDIAL is not set
# CLOCK_SUPPORT is not set
# CLOCK_DATETIME_SUPPORT is not set
# CLOCK_CRYSTAL_SUPPORT is not set
# CLOCK_PERIODIC_SUPPORT is not set
# DCF77_SUPPORT is not set
# DEBUG_DCF77 is not set
# NTP_SUPPORT is not set
NTP_SERVER_IP="213.133.123.125"
NTP_PORT=123
NTP_QUERY_INTERVAL=1800
# DEBUG_NTP is not set
# NTPD_SUPPORT is not set
# WHM_SUPPORT is not set
# UPTIME_SUPPORT is not set
# CRON_SUPPORT is not set
# CRON_DEFAULT_UTC is not set
# CRON_SUPPORT_TEST is not set
# CRON_VFS_SUPPORT is not set
# CRON_EEPROM_SUPPORT is not set
# CRON_ANACRON_SUPPORT is not set
# DEBUG_CRON_DRYRUN is not set
# DEBUG_CRON is not set
# CRON_STATIC_SUPPORT is not set
# DYNDNS_SUPPORT is not set
# DMX_STORAGE_SUPPORT is not set
DMX_STORAGE_UNIVERSES=2
DMX_STORAGE_CHANNELS=64
DMX_STORAGE_SLOTS=5
# DMX_STORAGE_DEBUG is not set
# DMX_FXSLOT_SUPPORT is not set
DMX_FXSLOT_AMOUNT=4
# DMX_FXSLOT_AUTOSAVE_SUPPORT is not set
# DMX_FXSLOT_AUTORESTORE_SUPPORT is not set
# DMX_FX_RAINBOW is not set
# DMX_FX_RANDOM is not set
# DMX_FX_FIRE is not set
# DMX_FX_WATER is not set
# DMX_FX_RGB is not set
# UDP_ECHO_NET_SUPPORT is not set
# WOL_SUPPORT is not set
# MOTD_SUPPORT is not set
CONF_MOTD_DEFAULT="empty"
CONF_MOTD_SIZE=50
HTTPD_SUPPORT=y
# HTTPD_SOAP_SUPPORT is not set
# HTTPD_AUTH_SUPPORT is not set
# HTTP_SD_DIR_SUPPORT is not set
# MIME_SUPPORT is not set
HTTPD_PORT=80
HTTPD_ALTERNATE_PORT=8000
# HTTP_FAVICON_SUPPORT is not set
# DEBUG_HTTPD is not set
# JABBER_SUPPORT is not set
CONF_JABBER_IP="78.47.210.246"
CONF_JABBER_HOSTNAME="jabber.zerties.org"
CONF_JABBER_USERNAME="esex"
CONF_JABBER_PASSWORD="password"
CONF_JABBER_RESOURCE="ethersex"
CONF_JABBER_BUDDY="ste...@jabber.zerties.org"
# JABBER_EEPROM_SUPPORT is not set
# JABBER_STARTUP_MESSAGE_SUPPORT is not set
# JABBER_LAST_SUPPORT is not set
# JABBER_VERSION_SUPPORT is not set
# DEBUG_JABBER is not set
# MOODLIGHT_SUPPORT is not set
MOODLIGHT_CHANGEGAP_INIT=120
# STELLA_SUPPORT is not set
# stella_vslow is not set
# stella_slow is not set
STELLA_FREQ=stella_normal
stella_normal=y
# stella_fast is not set
# STELLA_LOW_PRIORITY is not set
STELLA_START=stella_start_zero
stella_start_zero=y
# stella_start_all is not set
# stella_start_eeprom is not set
STELLA_FADE_STEP_INIT=10
STELLA_FADE_FUNCTION_INIT=stella_fade_func_0
stella_fade_func_0=y
# stella_fade_func_1 is not set
# STELLA_USE_CIE1931 is not set
# DEBUG_STELLA is not set
# STARBURST_SUPPORT is not set
# STARBURST_PCA9685 is not set
# STARBURST_DEBUG is not set
# MOTORCURTAIN_SUPPORT is not set
# MOTORCURTAIN_INVERTED_MOTOR is not set
# MOTORCURTAIN_INVERTED_DIRECTION is not set
# MOTORCURTAIN_INVERTED_SENSORS is not set
# MOTORCURTAIN_INVERTED_SAFETYSWITCH is not set
# MOTORCURTAIN_PROGRESS_SUPPORT is not set
# TFTP_SUPPORT is not set
# TFTPOMATIC_SUPPORT is not set
# TFTP_UPLOAD_SUPPORT is not set
CONF_BOOTLOAD_DELAY=250
# TFTP_CRC_SUPPORT is not set
# UPNP_SUPPORT is not set
CONF_UPNP_MULTICAST_IP="239.255.255.250"
CONF_UPNP_SCHEME_FILENAME="/ih.xml"
# DEBUG_UPNP is not set
# WATCHCAT_SUPPORT is not set
# VNC_SUPPORT is not set
VNC_PORT=5900
# GUI_SUPPORT is not set
# DEBUG_VNC is not set
# WATCHASYNC_SUPPORT is not set
CONF_WATCHASYNC_SERVER="volkszaehler.org"
WATCHASYNC_SERVER_IP="78.46.142.232"
CONF_WATCHASYNC_PORT=80
CONF_WATCHASYNC_METHOD="POST"
CONF_WATCHASYNC_PATH="/path/to/volkszaehler/backend.php/data/"
CONF_WATCHASYNC_END_PATH=""
# CONF_WATCHASYNC_TIMESTAMP is not set
# CONF_WATCHASYNC_SUMMARIZE is not set
CONF_WATCHASYNC_BUFFERSIZE=64
# CONF_WATCHASYNC_EDGDETECTVIAPOLLING is not set

#
# Pin Configuration
#

#
# Port A
#
# CONF_WATCHASYNC_PA0 is not set
# CONF_WATCHASYNC_PA1 is not set
# CONF_WATCHASYNC_PA2 is not set
# CONF_WATCHASYNC_PA3 is not set
# CONF_WATCHASYNC_PA4 is not set
# CONF_WATCHASYNC_PA5 is not set
# CONF_WATCHASYNC_PA6 is not set
# CONF_WATCHASYNC_PA7 is not set

#
# Port B
#
# CONF_WATCHASYNC_PB0 is not set
# CONF_WATCHASYNC_PB1 is not set
# CONF_WATCHASYNC_PB2 is not set
# CONF_WATCHASYNC_PB3 is not set
# CONF_WATCHASYNC_PB4 is not set
# CONF_WATCHASYNC_PB5 is not set
# CONF_WATCHASYNC_PB6 is not set
# CONF_WATCHASYNC_PB7 is not set

#
# Port C
#
# CONF_WATCHASYNC_PC0 is not set
# CONF_WATCHASYNC_PC1 is not set
# CONF_WATCHASYNC_PC2 is not set
# CONF_WATCHASYNC_PC3 is not set
# CONF_WATCHASYNC_PC4 is not set
# CONF_WATCHASYNC_PC5 is not set
# CONF_WATCHASYNC_PC6 is not set
# CONF_WATCHASYNC_PC7 is not set

#
# Port D
#
# CONF_WATCHASYNC_PD0 is not set
# CONF_WATCHASYNC_PD1 is not set
# CONF_WATCHASYNC_PD2 is not set
# CONF_WATCHASYNC_PD3 is not set
# CONF_WATCHASYNC_PD4 is not set
# CONF_WATCHASYNC_PD5 is not set
# CONF_WATCHASYNC_PD6 is not set
# CONF_WATCHASYNC_PD7 is not set
# DEBUG_WATCHASYNC is not set
# GLCD_MENU_SUPPORT is not set
# GLCDMENU_UMLAUTS is not set
# GLCDMENU_MOUSE_SUPPORT is not set
# GLCDMENU_S1D13305 is not set
# DEBUG_GLCD_MENU is not set
# LOME6_SUPPORT is not set
# LOME6_LCD_SUPPORT is not set
# LOME6_ONEWIRE_SUPPORT is not set
CONF_SENSOR_PSU="1015ccf501080065"
CONF_SENSOR_AIR="10567cf501080006"
CONF_SENSOR_RAM="10cba7f5010800d3"
CONF_LOME6_POD=0
CONF_TIME2PRESS_RESET=40
CONF_TIME2PRESS_POWER=40
CONF_TIME2PRESS_POWERL=3
# PROJECTOR_SANYO_Z700_SUPPORT is not set
# SANYO_Z700_USART_0 is not set
# DEBUG_SANYO_Z700 is not set
# FREQCOUNT_SUPPORT is not set
# TANKLEVEL_SUPPORT is not set
TANKLEVEL_ADC_CHANNEL=0
# TANKLEVEL_STARTUP is not set
# TANKLEVEL_CRON_SUPPORT is not set
# TANKLEVEL_PUMP_ACTIVE_LOW is not set
# TANKLEVEL_LOCK_SUPPORT is not set
# TANKLEVEL_INLINE_SUPPORT is not set
TANKLEVEL_SENSOR_OFFSET=0
TANKLEVEL_MED_DENSITY=840
TANKLEVEL_LTR_PER_M=3409
TANKLEVEL_LTR_FULL=10000
TANKLEVEL_RAISE_TIME=50
TANKLEVEL_HOLD_TIME=20
RFM12_SUPPORT=y
IPV4_SUPPORT=y

#
# AVRDUDE configuration
#
# _2232HIO is not set
# _4232h is not set
# _89isp is not set
# abcmini is not set
# alf is not set
# arduino is not set
# _arduino_ft232r is not set
# atisp is not set
# avr109 is not set
# avr910 is not set
# avr911 is not set
# avrftdi is not set
# avrisp is not set
# avrisp2 is not set
CONFIG_AVRDUDE_PROGRAMMER=avrispmkII
avrispmkII=y
# avrispv2 is not set
# bascom is not set
# blaster is not set
# bsd is not set
# buspirate is not set
# buspirate_bb is not set
# butterfly is not set
# butterfly_mk is not set
# bwmega is not set
# c2n232i is not set
# dapa is not set
# dasa is not set
# dasa3 is not set
# diecimila is not set
# dragon_dw is not set
# dragon_hvsp is not set
# dragon_isp is not set
# dragon_jtag is not set
# dragon_pdi is not set
# dragon_pp is not set
# dt006 is not set
# _ere_isp_avr is not set
# _frank_stk200 is not set
# ft232r is not set
# ft245r is not set
# futurlec is not set
# jtag1 is not set
# jtag1slow is not set
# jtag2 is not set
# jtag2avr32 is not set
# jtag2dw is not set
# jtag2fast is not set
# jtag2isp is not set
# jtag2pdi is not set
# jtag2slow is not set
# jtag3 is not set
# jtag3dw is not set
# jtag3isp is not set
# jtag3pdi is not set
# jtagkey is not set
# jtagmkI is not set
# jtagmkII is not set
# jtagmkII_avr32 is not set
# lm3s811 is not set
# mib510 is not set
# mkbutterfly is not set
# nibobee is not set
# _o_link is not set
# openmoko is not set
# pavr is not set
# pickit2 is not set
# picoweb is not set
# _pony_stk200 is not set
# ponyser is not set
# siprog is not set
# sp12 is not set
# stk200 is not set
# stk500 is not set
# stk500hvsp is not set
# stk500pp is not set
# stk500v1 is not set
# stk500v2 is not set
# stk600 is not set
# stk600hvsp is not set
# stk600pp is not set
# usbasp is not set
# _usbasp_clone is not set
# usbtiny is not set
# wiring is not set
# xil is not set
AVRDUDE_PROGRAMMER=avrispmkII
CONFIG_AVRDUDE_PORT="usb"
AVRDUDE_PORT=usb
# CONFIG_AVRDUDE_VERBOSE is not set
AVRDUDE_VERBOSE=-v
# CONFIG_AVRDUDE_NO_VERIFY is not set
# CONFIG_AVRDUDE_ERASE_COUNTER is not set
# AVRDUDE_BITCLOCK_4 is not set
CONFIG_AVRDUDE_BITCLOCK=AVRDUDE_BITCLOCK_1
AVRDUDE_BITCLOCK_1=y
# AVRDUDE_BITCLOCK_05 is not set
# AVRDUDE_BITCLOCK_03 is not set
AVRDUDE_BITCLOCK="-B 1"
CONFIG_AVRDUDE_EXTRA_OPTIONS=""
CONFIG_AVRDUDE_LFUSE=
AVRDUDE_LFUSE=INVALID_VALUE
CONFIG_AVRDUDE_HFUSE=
AVRDUDE_HFUSE=INVALID_VALUE
CONFIG_AVRDUDE_EFUSE=
AVRDUDE_EFUSE=INVALID_VALUE
/* port the enc28j60 is attached to */
pin(SPI_CS_NET, SPI_CS_HARDWARE)

ifdef(`conf_SD_READER', `dnl
  /* port the sd-reader CS is attached to */
  pin(SPI_CS_SD_READER, PB2, OUTPUT)
')dnl

ifdef(`conf_ONEWIRE', `dnl
  /* onewire port range */
  ONEWIRE_PORT_RANGE(PD6, PD6)
')dnl

ifdef(`conf_STELLA', `dnl
  /* stella port 1 */
  STELLA_PORT1_RANGE(PC0, PC7)
  dnl /* stella port 2*/
  dnl STELLA_PORT2_RANGE(PA0, PA3)
  STELLA_USE_TIMER(2)
')dnl


ifdef(`conf_STATUSLED_POWER', `dnl
pin(STATUSLED_POWER, PA3, OUTPUT)
')dnl

ifdef(`conf_STATUSLED_BOOTED', `dnl
pin(STATUSLED_BOOTED, PA3, OUTPUT)
')dnl

ifdef(`conf_STATUSLED_NETLINK', `dnl
pin(STATUSLED_NETLINK, PA2, OUTPUT)
')dnl

ifdef(`conf_STATUSLED_HB_ACT', `dnl
pin(STATUSLED_HB_ACT, PA0, OUTPUT)
')dnl

ifdef(`conf_FS20', `dnl
/* fs20 support */
pin(FS20_SEND, PD7)
ifdef(`conf_FS20_RECEIVE', `dnl
/* DO NOT CHANGE PIN!  USES INTERNAL COMPARATOR! */
pin(FS20_RECV, PB3)
')dnl
')dnl

ifdef(`conf_RFM12', `dnl
/* port the rfm12 module CS is attached to */
pin(SPI_CS_RFM12_0, PD5, OUTPUT)
RFM12_USE_INT(1)
RFM12_ASK_SENSE_USE_INT(1)
')

ifdef(`conf_ZBUS', `dnl
/* port config for zbus */
pin(ZBUS_RXTX_PIN, PD2)
')

ifdef(`conf_RC5', `
pin(RC5_SEND, PD4)
')

ifdef(`conf_LTC1257', `
  pin(LTC1257_CLK, PA2, OUTPUT)
  pin(LTC1257_DATA, PA1, OUTPUT)
  pin(LTC1257_LOAD, PA0, OUTPUT)
')

ifdef(`conf_USTREAM', `
  pin(VS1053_CS, PB0, OUTPUT)
  pin(VS1053_DREQ, PB3, INPUT)
')

ifdef(`conf_HD44780', `
  pin(HD44780_RS, PD3)
  pin(HD44780_RW, PD2)
  pin(HD44780_EN1, PB0)
  pin(HD44780_D4, PD4)
  pin(HD44780_D5, PD5)
  pin(HD44780_D6, PD6)
  pin(HD44780_D7, PD7)
')
ifdef(`conf_HD44780_BACKLIGHT', `
  pin(HD44780_BL, PB1, OUTPUT)
')
ifdef(`conf_DCF77', `dnl
  DCF77_USE_INT(1, PD3)
  pin(DCF1_PON, PA1, OUTPUT)
')dnl

ifdef(`conf_TANKLEVEL', `
  pin(TANKLEVEL_PUMP, PC3, OUTPUT)
')
ifdef(`conf_TANKLEVEL_LOCK', `
  pin(TANKLEVEL_LOCK, PA2, INPUT)
')
_______________________________________________
Ethersex-devel mailing list
Ethersex-devel@list.zerties.org
http://list.zerties.org/cgi-bin/mailman/listinfo/ethersex-devel

Antwort per Email an