/********************************************************************\ Name: config.h Created by: Stefan Ritt Contents: Configuration file for for SCS-210 RS232 node $Id: scs_210.c 4906 2010-12-09 10:38:33Z ritt $ \********************************************************************/ /* Define device name. Used by various parts of the framwork to enable or disable device-specific features */ #define SCS_210 /* define CPU type */ #define CPU_C8051F120 /* include file for CPU registers etc. */ #include /* CPU clock speed */ #define CLK_25MHZ /* ports for LED's */ #define LED_0 P3 ^ 4 #define LED_1 P3 ^ 3 /* polarity of LED: "0" if a low level activates the LEDs, "1" if a high level activates the LEDs */ #define LED_ON 0 /* port pin for RS485 enable signal */ #define RS485_EN_PIN P3 ^ 5 /* switches to activate certain features in the framework */ #define CFG_UART1_DEVICE // external device via UART1