X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=app%2Ftriface%2Fappconfig.h;h=2308f234e95f2f841d283c4b2d96f7f6a6b9c1c0;hb=9ba9dcf2a59a952609e19154e11de3e2478cbf42;hp=9bbd99636c7b1d0174ea84f8e9af0f6f15171302;hpb=f4f37527845e2b316b8199554a757ed0068e6839;p=bertos.git diff --git a/app/triface/appconfig.h b/app/triface/appconfig.h old mode 100755 new mode 100644 index 9bbd9963..2308f234 --- a/app/triface/appconfig.h +++ b/app/triface/appconfig.h @@ -1,8 +1,33 @@ -/*! +/** * \file * * * \brief DevLib configuration options @@ -46,6 +71,18 @@ /*#* *#* $Log$ + *#* Revision 1.5 2006/09/20 13:54:40 marco + *#* Added new SPI definitions. + *#* + *#* Revision 1.4 2006/07/19 12:56:25 bernie + *#* Convert to new Doxygen style. + *#* + *#* Revision 1.3 2006/06/12 21:37:01 marco + *#* implemented some commands (ver and sleep) + *#* + *#* Revision 1.2 2006/06/01 12:29:21 marco + *#* Add first simple protocol command (version request). + *#* *#* Revision 1.1 2006/05/18 00:41:47 bernie *#* New triface devlib application. *#* @@ -57,6 +94,10 @@ /** Baud-rate for the kdebug console */ #define CONFIG_KDEBUG_BAUDRATE 38400 +/** Serial port number for kdebug console */ +#define CONFIG_KDEBUG_PORT 0 + + /** * printf()-style formatter configuration. * @@ -97,6 +138,18 @@ /** [bytes] Size of the inbound FIFO buffer for SPI port (AVR only). */ #define CONFIG_SPI_RXBUFSIZE 32 + /** SPI data order (AVR only). */ + #define CONFIG_SPI_DATA_ORDER SER_MSB_FIRST + + /** SPI clock division factor (AVR only). */ + #define CONFIG_SPI_CLOCK_DIV 16 + + /** SPI clock polarity: 0 = normal low, 1 = normal high (AVR only). */ + #define CONFIG_SPI_CLOCK_POL 0 + + /** SPI clock phase: 0 = sample on first edge, 1 = sample on second clock edge (AVR only). */ + #define CONFIG_SPI_CLOCK_PHASE 0 + /** Default transmit timeout (ms). Set to -1 to disable timeout support */ #define CONFIG_SER_TXTIMEOUT -1 @@ -110,7 +163,7 @@ #define CONFIG_SER_DEFBAUDRATE 0 /** Enable ser_gets() and ser_gets_echo() */ - #define CONFIG_SER_GETS 0 + #define CONFIG_SER_GETS 1 /** Enable second serial port in emulator. */ #define CONFIG_EMUL_UART1 0 @@ -126,7 +179,7 @@ /*\}*/ /// Hardware timer selection for drv/timer.c -#define CONFIG_TIMER TIMER_ON_OUTPUT_COMPARE2 +#define CONFIG_TIMER TIMER_ON_OUTPUT_COMPARE0 /// Debug timer interrupt using a strobe pin. #define CONFIG_TIMER_STROBE 0 @@ -134,4 +187,7 @@ /// Enable watchdog timer. #define CONFIG_WATCHDOG 0 +/// Enable internal parser commands. +#define CONFIG_INTERNAL_COMMANDS 0 + #endif /* APPCONFIG_TRIFACE_H */