/hal_stm32-latest/lib/stm32wba/STM32_WPAN/ |
D | stm32_wpan_common.h | 73 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) argument 76 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument 79 #define MODINC( a, m ) M_BEGIN (a)++; if ((a)>=(m)) (a)=0; M_END argument 82 #define MODDEC( a, m ) M_BEGIN if ((a)==0) (a)=(m); (a)--; M_END argument 85 #define MODADD( a, b, m ) M_BEGIN (a)+=(b); if ((a)>=(m)) (a)-=(m); M_END argument 88 #define MODSUB( a, b, m ) MODADD( a, (m)-(b), m ) argument
|
/hal_stm32-latest/lib/stm32wb/hci/ |
D | stm32_wpan_common.h | 87 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) argument 90 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument 93 #define MODINC( a, m ) M_BEGIN (a)++; if ((a)>=(m)) (a)=0; M_END argument 96 #define MODDEC( a, m ) M_BEGIN if ((a)==0) (a)=(m); (a)--; M_END argument 99 #define MODADD( a, b, m ) M_BEGIN (a)+=(b); if ((a)>=(m)) (a)-=(m); M_END argument 102 #define MODSUB( a, b, m ) MODADD( a, (m)-(b), m ) argument
|
D | app_common.h | 73 #define MODINC( a, m ) M_BEGIN (a)++; if ((a)>=(m)) (a)=0; M_END argument 75 #define MODDEC( a, m ) M_BEGIN if ((a)==0) (a)=(m); (a)--; M_END argument 77 #define MODADD( a, b, m ) M_BEGIN (a)+=(b); if ((a)>=(m)) (a)-=(m); M_END argument 79 #define MODSUB( a, b, m ) MODADD( a, (m)-(b), m ) argument
|
D | utilities_common.h | 80 #define MODINC( a, m ) M_BEGIN (a)++; if ((a)>=(m)) (a)=0; M_END argument 83 #define MODDEC( a, m ) M_BEGIN if ((a)==0) (a)=(m); (a)--; M_END argument 86 #define MODADD( a, b, m ) M_BEGIN (a)+=(b); if ((a)>=(m)) (a)-=(m); M_END argument 89 #define MODSUB( a, b, m ) MODADD( a, (m)-(b), m ) argument
|
/hal_stm32-latest/lib/stm32wba/BLE_TransparentMode/Core/Inc/ |
D | app_common.h | 76 #define MODINC( a, m ) M_BEGIN (a)++; if ((a)>=(m)) (a)=0; M_END argument 78 #define MODDEC( a, m ) M_BEGIN if ((a)==0) (a)=(m); (a)--; M_END argument 80 #define MODADD( a, b, m ) M_BEGIN (a)+=(b); if ((a)>=(m)) (a)-=(m); M_END argument 82 #define MODSUB( a, b, m ) MODADD( a, (m)-(b), m ) argument
|
/hal_stm32-latest/lib/stm32wb0/BLE_TransparentMode/Core/Inc/ |
D | app_common.h | 74 #define MODINC( a, m ) M_BEGIN (a)++; if ((a)>=(m)) (a)=0; M_END argument 76 #define MODDEC( a, m ) M_BEGIN if ((a)==0) (a)=(m); (a)--; M_END argument 78 #define MODADD( a, b, m ) M_BEGIN (a)+=(b); if ((a)>=(m)) (a)-=(m); M_END argument 80 #define MODSUB( a, b, m ) MODADD( a, (m)-(b), m ) argument
|
/hal_stm32-latest/lib/stm32wba/BLE_TransparentMode/System/Modules/ |
D | utilities_common.h | 81 #define MODINC( a, m ) M_BEGIN (a)++; if ((a)>=(m)) (a)=0; M_END argument 84 #define MODDEC( a, m ) M_BEGIN if ((a)==0) (a)=(m); (a)--; M_END argument 87 #define MODADD( a, b, m ) M_BEGIN (a)+=(b); if ((a)>=(m)) (a)-=(m); M_END argument 90 #define MODSUB( a, b, m ) MODADD( a, (m)-(b), m ) argument
|
/hal_stm32-latest/ |
D | README.rst | 2 needed to build a Zephyr application running on STM32 silicon. 14 How to introduce a new version of stm32cube: 16 Original STM32Cube tree structure has been modified to a minimum 17 structure for a better fit into Zephyr. 41 When updating a STM32Cube package to a new version, please have a look 98 either because it is not available as a zephyr API or because you want to 100 In this case, you need to create a Kconfig file in your application which 126 package a complete and correct -pcintrl.dtsi is available. Generation use as 135 New set of -pinctrl.dtsi files could be generated following availability of a 136 new version of STM32 Open Pin Data or a change in the generation script [all …]
|
D | LICENSE | 82 transformation or translation of a Source form, including but 87 Object form, made available under the License, as indicated by a 94 represent, as a whole, an original work of authorship. For the purposes 111 designated in writing by the copyright owner as "Not a Contribution." 114 on behalf of whom a Contribution has been received by Licensor and 118 this License, each Contributor hereby grants to You a perpetual, 125 this License, each Contributor hereby grants to You a perpetual, 133 institute patent litigation against any entity (including a 134 cross-claim or counterclaim in a lawsuit) alleging that the Work 135 or a Contribution incorporated within the Work constitutes direct [all …]
|
/hal_stm32-latest/stm32cube/stm32wb0x/drivers/src/ |
D | stm32wb0x_hal_radio_timer.c | 202 #define MAX(a,b) ((a) < (b) )? (b) : (a) argument 203 #define MIN(a,b) ((a) < (b) )? (a) : (b) argument 204 #define DIFF8(a,b) ((a)>=(b) ? ((a)-(b)) : (256+((a)-(b)))) argument 205 #define TIME_DIFF(a, b) (((int32_t)((a - b) << (32-TIMER_BITS))) >> (32-TIMER_BITS)) argument 207 #define TIME_ABSDIFF(a, b) ((a - b) & TIMER_MAX_VALUE) argument
|
D | stm32wb0x_ll_utils.c | 67 #define countof(a) (sizeof(a) / sizeof(*(a))) argument
|
/hal_stm32-latest/stm32cube/stm32c0xx/drivers/include/ |
D | stm32c0xx_hal_hcd.h | 347 #define HCD_MIN(a, b) (((a) < (b)) ? (a) : (b)) argument 348 #define HCD_MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
|
/hal_stm32-latest/stm32cube/stm32g0xx/drivers/include/ |
D | stm32g0xx_hal_hcd.h | 347 #define HCD_MIN(a, b) (((a) < (b)) ? (a) : (b)) argument 348 #define HCD_MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
|
/hal_stm32-latest/stm32cube/stm32h5xx/drivers/include/ |
D | stm32h5xx_hal_hcd.h | 374 #define HCD_MIN(a, b) (((a) < (b)) ? (a) : (b)) argument 375 #define HCD_MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
|
/hal_stm32-latest/stm32cube/stm32u5xx/drivers/include/ |
D | stm32u5xx_hal_hcd.h | 374 #define HCD_MIN(a, b) (((a) < (b)) ? (a) : (b)) argument 375 #define HCD_MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
|
/hal_stm32-latest/stm32cube/stm32h7xx/ |
D | README | 16 It is composed of STM32Cube hardware abstraction layer (HAL) and low layer (LL) plus a set 49 - Internal reference: Not available. Will be fixed as part of a new eth hal implementation 53 we added a checked if the TSA bit was set in DESC1 54 If the TSA bit is set then have a peak at the context descriptor which should be the one
|
/hal_stm32-latest/lib/stm32wb0/STM32_BLE/stack/include/ |
D | ble_stack.h | 32 #define MIN(a,b) (((a) < (b))? (a) : (b)) argument 35 #define MAX(a,b) (((a) > (b))? (a) : (b)) argument
|
/hal_stm32-latest/stm32cube/ |
D | CMakeLists.txt | 9 # for a target STM32 series as part of the Zephyr RTOS. 24 # - The SERIES_NAME **always** ends with a single `x` 86 # Define the HSE frequency visible to Cube if a value is specified in Zephyr. 105 # suffixed with a single `x` (i.e., `${series}x`).
|
/hal_stm32-latest/lib/stm32wba/BLE_TransparentMode/STM32_WPAN/Target/ |
D | linklayer_plat.c | 45 #define max(a,b) ((a) > (b) ? a : b) argument
|
/hal_stm32-latest/stm32cube/stm32h5xx/ |
D | README | 16 It is composed of STM32Cube hardware abstraction layer (HAL) and low layer (LL) plus a set 54 we added a checked if the TSA bit was set in DESC1 55 If the TSA bit is set then have a peak at the context descriptor which should be the one
|
/hal_stm32-latest/scripts/ |
D | README.rst | 35 Step 2: Open a pull requests 40 Open a single pull request with 1 commit per stm32 familly (stm32xx) 54 Open a 2nd pull request with west.yml in repo
|
/hal_stm32-latest/lib/stm32wb0/BLE_TransparentMode/STM32_BLE/App/ |
D | dm_alloc.c | 40 #define MIN(a,b) (((a) < (b))? (a) : (b)) argument
|
D | dtm_cmds.c | 33 # define MIN(a,b) (((a) < (b)) ? (a) : (b)) argument
|
/hal_stm32-latest/stm32cube/stm32f3xx/drivers/src/ |
D | stm32f3xx_hal_pcd.c | 79 #define PCD_MIN(a, b) (((a) < (b)) ? (a) : (b)) argument 80 #define PCD_MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
|
/hal_stm32-latest/stm32cube/stm32l1xx/drivers/src/ |
D | stm32l1xx_hal_pcd.c | 79 #define PCD_MIN(a, b) (((a) < (b)) ? (a) : (b)) argument 80 #define PCD_MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
|