|
@@ -201,9 +201,9 @@ void SetupHardware(void)
|
|
|
/* Hardware Initialization */
|
|
|
USB_Init();
|
|
|
|
|
|
- /* PORTB: PB0 - RXLED, PB4 - Relay, PB5 - relay out */
|
|
|
- PORTB = (1 << 0) | (1 << 4);
|
|
|
- DDRB = ~(1 << 4);
|
|
|
+ /* PORTB: PB0 - RXLED, PB4 - Relay (pullup), PB5 - relay out */
|
|
|
+ PORTB |= (1 << 0) | (1 << 4);
|
|
|
+ DDRB = (DDRB & ~((1 << 4))) | ((1 << 0) | (1 << 5));
|
|
|
|
|
|
/* Initialize receiver and transmitter */
|
|
|
fmrx_init();
|