/loramac-node-latest/src/peripherals/soft-se/ |
D | aes.c | 308 # define block_copy_nn(d, s, l) memcpy(d, s, l) argument 309 # define block_copy(d, s) memcpy(d, s, N_BLOCK) argument 311 # define block_copy_nn(d, s, l) copy_block_nn(d, s, l) argument 312 # define block_copy(d, s) copy_block(d, s) argument 315 static void copy_block( void *d, const void *s ) in copy_block() argument 318 ((uint32_t*)d)[ 0] = ((uint32_t*)s)[ 0]; in copy_block() 319 ((uint32_t*)d)[ 1] = ((uint32_t*)s)[ 1]; in copy_block() 320 ((uint32_t*)d)[ 2] = ((uint32_t*)s)[ 2]; in copy_block() 321 ((uint32_t*)d)[ 3] = ((uint32_t*)s)[ 3]; in copy_block() 323 ((uint8_t*)d)[ 0] = ((uint8_t*)s)[ 0]; in copy_block() [all …]
|
/loramac-node-latest/src/system/ |
D | delay.c | 26 void Delay( float s ) in Delay() argument 28 DelayMs( s * 1000.0f ); in Delay()
|
D | delay.h | 36 void Delay( float s );
|
/loramac-node-latest/src/boards/mcu/saml21/cmsis/ |
D | arm_math.h | 705 q7_t r, s, t, u; in __QADD8() local 708 s = (q7_t) y; in __QADD8() 710 r = __SSAT((q31_t) (r + s), 8); in __QADD8() 711 s = __SSAT(((q31_t) (((x << 16) >> 24) + ((y << 16) >> 24))), 8); in __QADD8() 717 (((q31_t) s << 8) & 0x0000FF00) | (r & 0x000000FF); in __QADD8() 732 q31_t r, s, t, u; in __QSUB8() local 735 s = (q7_t) y; in __QSUB8() 737 r = __SSAT((r - s), 8); in __QSUB8() 738 s = __SSAT(((q31_t) (((x << 16) >> 24) - ((y << 16) >> 24))), 8) << 8; in __QSUB8() 743 (u & 0xFF000000) | (t & 0x00FF0000) | (s & 0x0000FF00) | (r & in __QSUB8() [all …]
|
/loramac-node-latest/src/boards/mcu/stm32/cmsis/ |
D | arm_math.h | 714 q31_t r, s, t, u; in __QADD8() local 717 s = __SSAT(((((q31_t)x << 16) >> 24) + (((q31_t)y << 16) >> 24)), 8) & (int32_t)0x000000FF; in __QADD8() 721 return ((uint32_t)((u << 24) | (t << 16) | (s << 8) | (r ))); in __QADD8() 732 q31_t r, s, t, u; in __QSUB8() local 735 s = __SSAT(((((q31_t)x << 16) >> 24) - (((q31_t)y << 16) >> 24)), 8) & (int32_t)0x000000FF; in __QSUB8() 739 return ((uint32_t)((u << 24) | (t << 16) | (s << 8) | (r ))); in __QSUB8() 751 q31_t r = 0, s = 0; in __QADD16() local 754 s = __SSAT(((((q31_t)x ) >> 16) + (((q31_t)y ) >> 16)), 16) & (int32_t)0x0000FFFF; in __QADD16() 756 return ((uint32_t)((s << 16) | (r ))); in __QADD16() 767 q31_t r, s; in __SHADD16() local [all …]
|
D | cmsis_armcc.h | 442 int32_t s = 4 /*sizeof(v)*/ * 8 - 1; /* extra shift needed at end */ in __RBIT() local 449 s--; in __RBIT() 451 result <<= s; /* shift when v's highest bits are zero */ in __RBIT()
|
D | cmsis_gcc.h | 533 int32_t s = 4 /*sizeof(v)*/ * 8 - 1; /* extra shift needed at end */ in __RBIT() local 540 s--; in __RBIT() 542 result <<= s; /* shift when v's highest bits are zero */ in __RBIT()
|
D | cmsis_armcc_V6.h | 882 int32_t s = 4 /*sizeof(v)*/ * 8 - 1; /* extra shift needed at end */ in __RBIT() local 889 s--; in __RBIT() 891 result <<= s; /* shift when v's highest bits are zero */ in __RBIT()
|
/loramac-node-latest/src/boards/mcu/saml21/hal/documentation/ |
D | timer.rst | 38 the process of adding or removing a task via the driver's API. In such case the interrupt processin… 43 the driver's interrupt, adding or removing a task may cause unpredictable behavior of the driver. 48 * If there are a lot of frequently called interrupts with the priority higher than the driver's one…
|
/loramac-node-latest/src/boards/ |
D | display-board.h | 128 void DisplaySetTextSize( uint8_t s );
|
/loramac-node-latest/src/boards/mcu/saml21/hal/utils/include/ |
D | utils.h | 125 #define OPTIMIZE_HIGH __attribute__((optimize(s)))
|
/loramac-node-latest/src/radio/ |
D | CMakeLists.txt | 96 option(USE_RADIO_DEBUG "Enable Radio Debug GPIO's" OFF)
|
/loramac-node-latest/src/boards/SKiM880B/ |
D | CMakeLists.txt | 39 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l151xba.s"
|
/loramac-node-latest/src/boards/SKiM980A/ |
D | CMakeLists.txt | 39 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l151xba.s"
|
/loramac-node-latest/src/boards/NAMote72/ |
D | CMakeLists.txt | 41 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l152xc.s"
|
/loramac-node-latest/src/boards/SKiM881AXL/ |
D | CMakeLists.txt | 39 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l081xx.s"
|
/loramac-node-latest/src/boards/B-L072Z-LRWAN1/ |
D | CMakeLists.txt | 40 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l072xx.s"
|
/loramac-node-latest/cmake/ |
D | toolchain-arm-none-eabi.cmake | 65 # -g produce debugging information in the operating system’s native format
|
/loramac-node-latest/src/boards/NucleoL152/ |
D | CMakeLists.txt | 39 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l152xe.s"
|
/loramac-node-latest/src/boards/NucleoL476/cmsis/arm-std/ |
D | startup_stm32l476xx.s | 2 ;* File Name : startup_stm32l476xx.s 115 DCD EXTI9_5_IRQHandler ; External Line[9:5]s
|
/loramac-node-latest/src/boards/NucleoL073/ |
D | CMakeLists.txt | 39 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l073xx.s"
|
/loramac-node-latest/src/boards/NucleoL476/ |
D | CMakeLists.txt | 39 "${CMAKE_CURRENT_SOURCE_DIR}/cmsis/arm-gcc/startup_stm32l476xx.s"
|
/loramac-node-latest/src/boards/B-L072Z-LRWAN1/cmsis/arm-std/ |
D | startup_stm32l072xx.s | 2 ;* File Name : startup_stm32l072xx.s
|
/loramac-node-latest/src/boards/NucleoL073/cmsis/arm-std/ |
D | startup_stm32l073xx.s | 2 ;* File Name : startup_stm32l073xx.s
|
/loramac-node-latest/src/boards/SKiM881AXL/cmsis/arm-std/ |
D | startup_stm32l081xx.s | 2 ;* File Name : startup_stm32l081xx.s
|