/loramac-node-3.4.0/src/boards/mcu/saml21/hal/utils/include/ |
D | utils.h | 60 #define CONTAINER_OF(ptr, type, field_name) ((type *)(((uint8_t *)ptr) - offsetof(type, field_name)… argument 102 #define PROGMEM_DECLARE(type, name) const type name argument 108 #define PROGMEM_DECLARE(type, name) const type name 114 #define PROGMEM_DECLARE(type, name) const type name
|
/loramac-node-3.4.0/cmake/ |
D | toolchain-arm-none-eabi.cmake | 66 set(CMAKE_C_FLAGS_DEBUG "-Og -g -DDEBUG" CACHE INTERNAL "C Compiler options for debug build type") 67 …(CMAKE_CXX_FLAGS_DEBUG "-Og -g -DDEBUG" CACHE INTERNAL "C++ Compiler options for debug build type") 68 set(CMAKE_ASM_FLAGS_DEBUG "-g" CACHE INTERNAL "ASM Compiler options for debug build type") 69 set(CMAKE_EXE_LINKER_FLAGS_DEBUG "" CACHE INTERNAL "Linker options for debug build type") 73 set(CMAKE_C_FLAGS_RELEASE "-Os" CACHE INTERNAL "C Compiler options for release build type") 74 set(CMAKE_CXX_FLAGS_RELEASE "-Os" CACHE INTERNAL "C++ Compiler options for release build type") 75 set(CMAKE_ASM_FLAGS_RELEASE "" CACHE INTERNAL "ASM Compiler options for release build type") 76 set(CMAKE_EXE_LINKER_FLAGS_RELEASE "" CACHE INTERNAL "Linker options for release build type")
|
/loramac-node-3.4.0/src/peripherals/ |
D | mpl3115.c | 198 static float MPL3115ReadBarometer( BarometerReadingType_t type ) in MPL3115ReadBarometer() argument 210 if( type == ALTITUDE ) in MPL3115ReadBarometer() 231 if( type == ALTITUDE ) in MPL3115ReadBarometer() 263 if( type == ALTITUDE ) in MPL3115ReadBarometer()
|
D | gpio-ioe.h | 45 void GpioIoeInit( Gpio_t *obj, PinNames pin, PinModes mode, PinConfigs config, PinTypes type, uint3…
|
/loramac-node-3.4.0/src/system/ |
D | gpio.c | 29 void GpioInit( Gpio_t *obj, PinNames pin, PinModes mode, PinConfigs config, PinTypes type, uint32_… in GpioInit() argument 31 GpioMcuInit( obj, pin, mode, config, type, value ); in GpioInit()
|
/loramac-node-3.4.0/src/mac/region/ |
D | Region.c | 52 …TERNATE_DR( ) AS923_CASE { return RegionAS923AlternateDr( currentDr, type ); } 101 …TERNATE_DR( ) AU915_CASE { return RegionAU915AlternateDr( currentDr, type ); } 150 …TERNATE_DR( ) CN470_CASE { return RegionCN470AlternateDr( currentDr, type ); } 199 …TERNATE_DR( ) CN779_CASE { return RegionCN779AlternateDr( currentDr, type ); } 248 …TERNATE_DR( ) EU433_CASE { return RegionEU433AlternateDr( currentDr, type ); } 297 …TERNATE_DR( ) EU868_CASE { return RegionEU868AlternateDr( currentDr, type ); } 346 …TERNATE_DR( ) KR920_CASE { return RegionKR920AlternateDr( currentDr, type ); } 395 …TERNATE_DR( ) IN865_CASE { return RegionIN865AlternateDr( currentDr, type ); } 444 …TERNATE_DR( ) US915_CASE { return RegionUS915AlternateDr( currentDr, type ); } 493 …TERNATE_DR( ) RU864_CASE { return RegionRU864AlternateDr( currentDr, type ); } [all …]
|
/loramac-node-3.4.0/src/boards/SAMR34/ |
D | gpio-board.c | 29 void GpioMcuInit( Gpio_t *obj, PinNames pin, PinModes mode, PinConfigs config, PinTypes type, uint3… in GpioMcuInit() argument 43 …gpio_set_pin_pull_mode( obj->pin, type ); // the pull up/down need to be set after the direction f… in GpioMcuInit()
|
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Src/ |
D | stm32l4xx_ll_usb.c | 427 ((uint32_t)ep->type << 18) | (epnum << 22) | in USB_ActivateEndpoint() 439 ((uint32_t)ep->type << 18) | in USB_ActivateEndpoint() 464 ((uint32_t)ep->type << 18) | (epnum << 22) | in USB_ActivateDedicatedEndpoint() 476 ((uint32_t)ep->type << 18) | (epnum << 22) | in USB_ActivateDedicatedEndpoint() 581 if (ep->type == EP_TYPE_ISOC) in USB_EPStartXfer() 588 if (ep->type != EP_TYPE_ISOC) in USB_EPStartXfer() 597 if (ep->type == EP_TYPE_ISOC) in USB_EPStartXfer() 612 if (ep->type == EP_TYPE_ISOC) in USB_EPStartXfer() 638 if (ep->type == EP_TYPE_ISOC) in USB_EPStartXfer() 822 if ((ep->type == EP_TYPE_INTR) || (ep->type == EP_TYPE_BULK)) in USB_EPClearStall() [all …]
|
/loramac-node-3.4.0/src/boards/mcu/saml21/hpl/dmac/ |
D | hpl_dmac.c | 147 void _dma_set_irq_state(const uint8_t channel, const enum _dma_callback_type type, const bool state) in _dma_set_irq_state() argument 151 if (DMA_TRANSFER_COMPLETE_CB == type) { in _dma_set_irq_state() 153 } else if (DMA_TRANSFER_ERROR_CB == type) { in _dma_set_irq_state()
|
/loramac-node-3.4.0/src/boards/SKiM980A/ |
D | gpio-board.c | 35 void GpioMcuInit( Gpio_t *obj, PinNames pin, PinModes mode, PinConfigs config, PinTypes type, uint3… in GpioMcuInit() argument 77 GPIO_InitStructure.Pull = obj->pull = type; in GpioMcuInit() 124 GpioIoeInit( obj, pin, mode, config, type, value ); in GpioMcuInit()
|
/loramac-node-3.4.0/src/boards/NucleoL152/ |
D | gpio-board.c | 35 void GpioMcuInit( Gpio_t *obj, PinNames pin, PinModes mode, PinConfigs config, PinTypes type, uint3… in GpioMcuInit() argument 77 GPIO_InitStructure.Pull = obj->pull = type; in GpioMcuInit() 124 GpioIoeInit( obj, pin, mode, config, type, value ); in GpioMcuInit()
|
/loramac-node-3.4.0/src/boards/NucleoL476/ |
D | gpio-board.c | 35 void GpioMcuInit( Gpio_t *obj, PinNames pin, PinModes mode, PinConfigs config, PinTypes type, uint3… in GpioMcuInit() argument 77 GPIO_InitStructure.Pull = obj->pull = type; in GpioMcuInit() 124 GpioIoeInit( obj, pin, mode, config, type, value ); in GpioMcuInit()
|
/loramac-node-3.4.0/src/boards/NucleoL073/ |
D | gpio-board.c | 35 void GpioMcuInit( Gpio_t *obj, PinNames pin, PinModes mode, PinConfigs config, PinTypes type, uint3… in GpioMcuInit() argument 76 GPIO_InitStructure.Pull = obj->pull = type; in GpioMcuInit() 123 GpioIoeInit( obj, pin, mode, config, type, value ); in GpioMcuInit()
|
/loramac-node-3.4.0/src/boards/SKiM881AXL/ |
D | gpio-board.c | 35 void GpioMcuInit( Gpio_t *obj, PinNames pin, PinModes mode, PinConfigs config, PinTypes type, uint3… in GpioMcuInit() argument 76 GPIO_InitStructure.Pull = obj->pull = type; in GpioMcuInit() 123 GpioIoeInit( obj, pin, mode, config, type, value ); in GpioMcuInit()
|
/loramac-node-3.4.0/src/boards/SKiM880B/ |
D | gpio-board.c | 35 void GpioMcuInit( Gpio_t *obj, PinNames pin, PinModes mode, PinConfigs config, PinTypes type, uint3… in GpioMcuInit() argument 77 GPIO_InitStructure.Pull = obj->pull = type; in GpioMcuInit() 124 GpioIoeInit( obj, pin, mode, config, type, value ); in GpioMcuInit()
|
/loramac-node-3.4.0/src/boards/NAMote72/ |
D | gpio-board.c | 35 void GpioMcuInit( Gpio_t *obj, PinNames pin, PinModes mode, PinConfigs config, PinTypes type, uint3… in GpioMcuInit() argument 77 GPIO_InitStructure.Pull = obj->pull = type; in GpioMcuInit() 124 GpioIoeInit( obj, pin, mode, config, type, value ); in GpioMcuInit()
|
/loramac-node-3.4.0/src/boards/B-L072Z-LRWAN1/ |
D | gpio-board.c | 35 void GpioMcuInit( Gpio_t *obj, PinNames pin, PinModes mode, PinConfigs config, PinTypes type, uint3… in GpioMcuInit() argument 76 GPIO_InitStructure.Pull = obj->pull = type; in GpioMcuInit() 123 GpioIoeInit( obj, pin, mode, config, type, value ); in GpioMcuInit()
|
/loramac-node-3.4.0/src/boards/mcu/saml21/hpl/sercom/ |
D | hpl_sercom.c | 547 …set_irq_state(struct _usart_async_device *const device, const enum _usart_async_callback_type type, in _usart_async_set_irq_state() argument 552 if (USART_ASYNC_BYTE_SENT == type || USART_ASYNC_TX_DONE == type) { in _usart_async_set_irq_state() 555 } else if (USART_ASYNC_RX_DONE == type) { in _usart_async_set_irq_state() 557 } else if (USART_ASYNC_ERROR == type) { in _usart_async_set_irq_state() 1234 …_register_callback(struct _i2c_m_async_device *const i2c_dev, enum _i2c_m_async_callback_type type, in _i2c_m_async_register_callback() argument 1237 switch (type) { in _i2c_m_async_register_callback() 1390 …set_irq_state(struct _i2c_m_async_device *const device, const enum _i2c_m_async_callback_type type, in _i2c_m_async_set_irq_state() argument 1393 if (I2C_M_ASYNC_DEVICE_TX_COMPLETE == type || I2C_M_ASYNC_DEVICE_RX_COMPLETE == type) { in _i2c_m_async_set_irq_state() 1396 } else if (I2C_M_ASYNC_DEVICE_ERROR == type) { in _i2c_m_async_set_irq_state() 1879 …set_irq_state(struct _i2c_s_async_device *const device, const enum _i2c_s_async_callback_type type, in _i2c_s_async_set_irq_state() argument [all …]
|
/loramac-node-3.4.0/.vscode/ |
D | settings.json | 46 // Select the type of modulation, applicable to the ping-pong or 60 // Secure element type selection the following are supported
|
/loramac-node-3.4.0/src/boards/ |
D | gpio-board.h | 44 void GpioMcuInit( Gpio_t *obj, PinNames pin, PinModes mode, PinConfigs config, PinTypes type, uint3…
|
/loramac-node-3.4.0/src/boards/mcu/saml21/hal/include/ |
D | hpl_dma.h | 161 void _dma_set_irq_state(const uint8_t channel, const enum _dma_callback_type type, const bool state…
|
D | hpl_i2c_s_async.h | 187 …set_irq_state(struct _i2c_s_async_device *const device, const enum _i2c_s_async_callback_type type,
|
/loramac-node-3.4.0/src/boards/NucleoL073/cmsis/arm-gcc/ |
D | startup_stm32l073xx.s | 63 .type Reset_Handler, %function 132 .type g_pfnVectors, %object
|
/loramac-node-3.4.0/src/boards/SKiM881AXL/cmsis/arm-gcc/ |
D | startup_stm32l081xx.s | 63 .type Reset_Handler, %function 132 .type g_pfnVectors, %object
|
/loramac-node-3.4.0/src/boards/B-L072Z-LRWAN1/cmsis/arm-gcc/ |
D | startup_stm32l072xx.s | 63 .type Reset_Handler, %function 132 .type g_pfnVectors, %object
|