Home
last modified time | relevance | path

Searched defs:n (Results 1 – 15 of 15) sorted by relevance

/loramac-node-3.4.0/src/boards/mcu/saml21/hal/utils/include/
Dutils_repeat_macro.h63 #define REPEAT_MACRO(macro, arg, n) REPEAT_MACRO_I(macro, arg, n) argument
69 #define REPEAT_MACRO_I(macro, arg, n) REPEAT##n(macro, arg, 0) argument
71 #define REPEAT1(macro, arg, n) macro(arg, n) argument
72 #define REPEAT2(macro, arg, n) macro(arg, n) REPEAT1(macro, arg, INC_VALUE(n)) argument
73 #define REPEAT3(macro, arg, n) macro(arg, n) REPEAT2(macro, arg, INC_VALUE(n)) argument
74 #define REPEAT4(macro, arg, n) macro(arg, n) REPEAT3(macro, arg, INC_VALUE(n)) argument
75 #define REPEAT5(macro, arg, n) macro(arg, n) REPEAT4(macro, arg, INC_VALUE(n)) argument
76 #define REPEAT6(macro, arg, n) macro(arg, n) REPEAT5(macro, arg, INC_VALUE(n)) argument
77 #define REPEAT7(macro, arg, n) macro(arg, n) REPEAT6(macro, arg, INC_VALUE(n)) argument
78 #define REPEAT8(macro, arg, n) macro(arg, n) REPEAT7(macro, arg, INC_VALUE(n)) argument
[all …]
Dutils_recursion_macro.h59 #define RECURSION_MACRO(macro, arg, n) RECURSION_MACRO_I(macro, arg, n) argument
65 #define RECURSION_MACRO_I(macro, arg, n) RECURSION##n(macro, arg) argument
/loramac-node-3.4.0/src/boards/mcu/saml21/hpl/core/
Dhpl_core_m0plus_base.c106 void _irq_disable(uint8_t n) in _irq_disable()
114 void _irq_set(uint8_t n) in _irq_set()
122 void _irq_clear(uint8_t n) in _irq_clear()
130 void _irq_enable(uint8_t n) in _irq_enable()
138 void _irq_register(const uint8_t n, struct _irq_descriptor *const irq) in _irq_register()
/loramac-node-3.4.0/src/boards/mcu/saml21/hal/include/
Dhpl_gpio.h66 #define GPIO_PIN(n) (((n)&0x1Fu) << 0) argument
67 #define GPIO_PORT(n) ((n) >> 5) argument
/loramac-node-3.4.0/src/boards/mcu/saml21/hal/src/
Dhal_i2c_m_sync.c45 static int32_t i2c_m_sync_read(struct io_descriptor *io, uint8_t *buf, const uint16_t n) in i2c_m_sync_read()
68 static int32_t i2c_m_sync_write(struct io_descriptor *io, const uint8_t *buf, const uint16_t n) in i2c_m_sync_write()
/loramac-node-3.4.0/src/boards/mcu/saml21/hpl/systick/
Dhpl_systick.c98 uint8_t n = cycles >> 24; in _delay_cycles() local
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L1xx_HAL_Driver/Src/
Dstm32l1xx_hal_pcd.c547 uint32_t n = ((uint32_t)((uint32_t)wNBytes + 1U)) >> 1U; in PCD_WritePMA() local
574 uint32_t n = ((uint32_t)((uint32_t)wNBytes + 1U)) >> 1U; in PCD_ReadPMA() local
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Src/
Dstm32l0xx_hal_pcd.c1175 uint32_t n = (wNBytes + 1U) >> 1U; in PCD_WritePMA() local
1201 uint32_t n = (wNBytes + 1U) >> 1U; in PCD_ReadPMA() local
/loramac-node-3.4.0/src/boards/
Dutilities.h70 #define POW2( n ) ( 1 << n ) argument
/loramac-node-3.4.0/src/boards/mcu/saml21/hpl/dmac/
Dhpl_dmac.c70 #define DMAC_CHANNEL_CFG(i, n) … argument
/loramac-node-3.4.0/src/boards/mcu/saml21/hpl/sercom/
Dhpl_sercom.c97 #define SERCOM_CONFIGURATION(n) … argument
834 #define I2CM_CONFIGURATION(n) … argument
1612 #define I2CS_CONFIGURATION(n) … argument
1998 uint8_t n; member
2003 #define SERCOMSPI_REGS(n) … argument
2310 uint8_t n = _sercom_get_hardware_index((const void *)hw_addr); in _spi_get_regs() local
/loramac-node-3.4.0/src/radio/sx126x/
Dsx126x.c574 uint8_t n; in SX126xSetModulationParams() local
619 uint8_t n; in SX126xSetPacketParams() local
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32_USB_Device_Library/Class/DFU/Inc/
Dusbd_dfu.h133 #define USBD_DFU_IF_DESC(n) 0x09, /* bLength: Interface Descriptor size */ \ argument
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_ll_usb.c2429 uint32_t n = ((uint32_t)wNBytes + 1U) >> 1; in USB_WritePMA() local
2463 uint32_t n = (uint32_t)wNBytes >> 1; in USB_ReadPMA() local
/loramac-node-3.4.0/src/apps/LoRaMac/common/LmHandler/packages/
DFragDecoder.c575 static void FragGetParityMatrixRow( int32_t n, int32_t m, uint8_t *matrixRow ) in FragGetParityMatrixRow()