cpu: remove transceiver defines from cpu_conf files
This commit is contained in:
parent
1733d4a730
commit
75472eddf4
@ -254,9 +254,6 @@ typedef enum llwu_wakeup_pin {
|
|||||||
#define ISR_PORT_E isr_porte_pin_detect
|
#define ISR_PORT_E isr_porte_pin_detect
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
/** @brief Number of packets in transceiver queue */
|
|
||||||
#define TRANSCEIVER_BUFFER_SIZE (3)
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @name Bit band macros
|
* @name Bit band macros
|
||||||
* @{
|
* @{
|
||||||
|
|||||||
@ -61,8 +61,6 @@ extern "C"
|
|||||||
*/
|
*/
|
||||||
#define CPUID_ID_PTR ((void *)(&(SIM_UIDH)))
|
#define CPUID_ID_PTR ((void *)(&(SIM_UIDH)))
|
||||||
|
|
||||||
#define TRANSCEIVER_BUFFER_SIZE (3) /**< Buffer Size for Transceiver Module */
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief MCU specific Low Power Timer settings.
|
* @brief MCU specific Low Power Timer settings.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -60,14 +60,6 @@ extern "C" {
|
|||||||
#define CC_CONF_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
#define CC_CONF_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Transceiver configuration
|
|
||||||
* @{
|
|
||||||
*/
|
|
||||||
#define TRANSCEIVER_BUFFER_SIZE (10)
|
|
||||||
#define RX_BUF_SIZE (10)
|
|
||||||
/** @} */
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @name UART0 buffer size definition for compatibility reasons
|
* @name UART0 buffer size definition for compatibility reasons
|
||||||
*
|
*
|
||||||
|
|||||||
@ -27,9 +27,6 @@ extern "C" {
|
|||||||
#define THREAD_STACKSIZE_IDLE (96)
|
#define THREAD_STACKSIZE_IDLE (96)
|
||||||
#define MSP430_ISR_STACK_SIZE (256)
|
#define MSP430_ISR_STACK_SIZE (256)
|
||||||
|
|
||||||
#define RX_BUF_SIZE (3)
|
|
||||||
#define TRANSCEIVER_BUFFER_SIZE (3)
|
|
||||||
|
|
||||||
#ifndef UART0_BUFSIZE
|
#ifndef UART0_BUFSIZE
|
||||||
#define UART0_BUFSIZE (32)
|
#define UART0_BUFSIZE (32)
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@ -34,11 +34,6 @@ extern "C" {
|
|||||||
#define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (163840)
|
#define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (163840)
|
||||||
/* for core/include/thread.h */
|
/* for core/include/thread.h */
|
||||||
#define THREAD_STACKSIZE_MINIMUM (163840)
|
#define THREAD_STACKSIZE_MINIMUM (163840)
|
||||||
/* undefine the TRANSCEIVER_STACK_SIZE (2048 or 512) defined in transceiver.h */
|
|
||||||
#ifdef TRANSCEIVER_STACK_SIZE
|
|
||||||
#undef TRANSCEIVER_STACK_SIZE
|
|
||||||
#endif
|
|
||||||
#define TRANSCEIVER_STACK_SIZE (163840)
|
|
||||||
/* native internal */
|
/* native internal */
|
||||||
#define THREAD_STACKSIZE_MINIMUM (163840)
|
#define THREAD_STACKSIZE_MINIMUM (163840)
|
||||||
#define NATIVE_ISR_STACKSIZE (163840)
|
#define NATIVE_ISR_STACKSIZE (163840)
|
||||||
@ -50,11 +45,6 @@ extern "C" {
|
|||||||
#define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (8192)
|
#define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (8192)
|
||||||
/* for core/include/thread.h */
|
/* for core/include/thread.h */
|
||||||
#define THREAD_STACKSIZE_MINIMUM (8192)
|
#define THREAD_STACKSIZE_MINIMUM (8192)
|
||||||
/* undefine the TRANSCEIVER_STACK_SIZE (2048 or 512) defined in transceiver.h */
|
|
||||||
#ifdef TRANSCEIVER_STACK_SIZE
|
|
||||||
#undef TRANSCEIVER_STACK_SIZE
|
|
||||||
#endif
|
|
||||||
#define TRANSCEIVER_STACK_SIZE (16384)
|
|
||||||
/* native internal */
|
/* native internal */
|
||||||
#define NATIVE_ISR_STACKSIZE (8192)
|
#define NATIVE_ISR_STACKSIZE (8192)
|
||||||
#endif /* OS */
|
#endif /* OS */
|
||||||
|
|||||||
@ -33,11 +33,6 @@ extern "C" {
|
|||||||
#define CPU_FLASH_BASE FLASH_ADDR
|
#define CPU_FLASH_BASE FLASH_ADDR
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Buffer size to use by the transceiver
|
|
||||||
*/
|
|
||||||
#define TRANSCEIVER_BUFFER_SIZE (3)
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief CPUID_ID_LEN length of cpuid in bytes
|
* @brief CPUID_ID_LEN length of cpuid in bytes
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -43,8 +43,6 @@ extern "C" {
|
|||||||
*/
|
*/
|
||||||
#define CPUID_ID_LEN (12)
|
#define CPUID_ID_LEN (12)
|
||||||
|
|
||||||
#define TRANSCEIVER_BUFFER_SIZE (3)
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Configure the CPU's clock system
|
* @brief Configure the CPU's clock system
|
||||||
*
|
*
|
||||||
|
|||||||
@ -45,16 +45,6 @@ extern "C" {
|
|||||||
*/
|
*/
|
||||||
#define CPUID_ID_LEN (12)
|
#define CPUID_ID_LEN (12)
|
||||||
|
|
||||||
/**
|
|
||||||
* @name CC110X buffer size definitions for the stm32f4
|
|
||||||
* @{
|
|
||||||
*/
|
|
||||||
#ifdef MODULE_CC110X
|
|
||||||
#define TRANSCEIVER_BUFFER_SIZE (10)
|
|
||||||
#define RX_BUF_SIZE (10)
|
|
||||||
#endif
|
|
||||||
/** @} */
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@ -41,8 +41,6 @@ extern "C" {
|
|||||||
*/
|
*/
|
||||||
#define CPUID_ID_LEN (12)
|
#define CPUID_ID_LEN (12)
|
||||||
|
|
||||||
#define TRANSCEIVER_BUFFER_SIZE (3)
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user