Updated RT-SAMA5D2-XPLAINED demo
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12545 110e8d01-0319-4d1e-a829-52ad28d1bb01
This commit is contained in:
parent
1c6848025a
commit
3aa6ce94a8
|
@ -492,7 +492,7 @@
|
|||
* @note The default is @p FALSE.
|
||||
*/
|
||||
#if !defined(CH_DBG_SYSTEM_STATE_CHECK)
|
||||
#define CH_DBG_SYSTEM_STATE_CHECK TRUE
|
||||
#define CH_DBG_SYSTEM_STATE_CHECK FALSE
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
@ -503,7 +503,7 @@
|
|||
* @note The default is @p FALSE.
|
||||
*/
|
||||
#if !defined(CH_DBG_ENABLE_CHECKS)
|
||||
#define CH_DBG_ENABLE_CHECKS TRUE
|
||||
#define CH_DBG_ENABLE_CHECKS FALSE
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
@ -515,7 +515,7 @@
|
|||
* @note The default is @p FALSE.
|
||||
*/
|
||||
#if !defined(CH_DBG_ENABLE_ASSERTS)
|
||||
#define CH_DBG_ENABLE_ASSERTS TRUE
|
||||
#define CH_DBG_ENABLE_ASSERTS FALSE
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
* @brief Enables the I2C subsystem.
|
||||
*/
|
||||
#if !defined(HAL_USE_I2C) || defined(__DOXYGEN__)
|
||||
#define HAL_USE_I2C TRUE
|
||||
#define HAL_USE_I2C FALSE
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
@ -107,7 +107,7 @@
|
|||
* @brief Enables the MAC subsystem.
|
||||
*/
|
||||
#if !defined(HAL_USE_MAC) || defined(__DOXYGEN__)
|
||||
#define HAL_USE_MAC TRUE
|
||||
#define HAL_USE_MAC FALSE
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
@ -128,7 +128,7 @@
|
|||
* @brief Enables the RTC subsystem.
|
||||
*/
|
||||
#if !defined(HAL_USE_RTC) || defined(__DOXYGEN__)
|
||||
#define HAL_USE_RTC TRUE
|
||||
#define HAL_USE_RTC FALSE
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
@ -163,14 +163,14 @@
|
|||
* @brief Enables the SPI subsystem.
|
||||
*/
|
||||
#if !defined(HAL_USE_SPI) || defined(__DOXYGEN__)
|
||||
#define HAL_USE_SPI TRUE
|
||||
#define HAL_USE_SPI FALSE
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief Enables the TRNG subsystem.
|
||||
*/
|
||||
#if !defined(HAL_USE_TRNG) || defined(__DOXYGEN__)
|
||||
#define HAL_USE_TRNG TRUE
|
||||
#define HAL_USE_TRNG FALSE
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
/*
|
||||
* I2C driver system settings.
|
||||
*/
|
||||
#define SAMA_I2C_USE_TWIHS0 TRUE
|
||||
#define SAMA_I2C_USE_TWIHS0 FALSE
|
||||
#define SAMA_I2C_USE_TWIHS1 FALSE
|
||||
#define SAMA_I2C_BUSY_TIMEOUT 50
|
||||
#define SAMA_I2C_TWIHS0_IRQ_PRIORITY 6
|
||||
|
@ -113,7 +113,7 @@
|
|||
/*
|
||||
* SPI driver system settings.
|
||||
*/
|
||||
#define SAMA_SPI_USE_SPI0 TRUE
|
||||
#define SAMA_SPI_USE_SPI0 FALSE
|
||||
#define SAMA_SPI0_USE_GCLK FALSE
|
||||
#define SAMA_SPI0_GCLK_SOURCE SAMA_GCLK_MCK_CLK
|
||||
#define SAMA_SPI0_GCLK_DIV 21
|
||||
|
@ -170,7 +170,7 @@
|
|||
/*
|
||||
* TRNG driver system settings.
|
||||
*/
|
||||
#define SAMA_TRNG_USE_TRNG0 TRUE
|
||||
#define SAMA_TRNG_USE_TRNG0 FALSE
|
||||
|
||||
/*
|
||||
* UART driver system settings.
|
||||
|
@ -208,11 +208,6 @@
|
|||
#define SAMA_UART_DMA_ERROR_HOOK(uartp) osalSysHalt("DMA failure")
|
||||
#define SAMA_UART_CACHE_USER_MANAGED FALSE
|
||||
|
||||
/*
|
||||
* WDG driver system settings.
|
||||
*/
|
||||
#define SAMA_WDG_USE_WDT FALSE
|
||||
|
||||
/*
|
||||
* WSPI driver system settings.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue