Home
last modified time | relevance | path

Searched refs:length (Results 1 – 17 of 17) sorted by relevance

/loramac-node-3.4.0/src/boards/mcu/stm32/STM32_USB_Device_Library/Core/Inc/
Dusbd_def.h175 uint8_t *(*GetHSConfigDescriptor)(uint16_t *length);
176 uint8_t *(*GetFSConfigDescriptor)(uint16_t *length);
177 uint8_t *(*GetOtherSpeedConfigDescriptor)(uint16_t *length);
178 uint8_t *(*GetDeviceQualifierDescriptor)(uint16_t *length);
180 …_t *(*GetUsrStrDescriptor)(struct _USBD_HandleTypeDef *pdev ,uint8_t index, uint16_t *length);
203 uint8_t *(*GetDeviceDescriptor)( USBD_SpeedTypeDef speed , uint16_t *length);
204 uint8_t *(*GetLangIDStrDescriptor)( USBD_SpeedTypeDef speed , uint16_t *length);
205 uint8_t *(*GetManufacturerStrDescriptor)( USBD_SpeedTypeDef speed , uint16_t *length);
206 uint8_t *(*GetProductStrDescriptor)( USBD_SpeedTypeDef speed , uint16_t *length);
207 uint8_t *(*GetSerialStrDescriptor)( USBD_SpeedTypeDef speed , uint16_t *length);
[all …]
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32_USB_Device_Library/Class/CDC/Src/
Dusbd_cdc.c124 static uint8_t *USBD_CDC_GetFSCfgDesc (uint16_t *length);
126 static uint8_t *USBD_CDC_GetHSCfgDesc (uint16_t *length);
128 static uint8_t *USBD_CDC_GetOtherSpeedCfgDesc (uint16_t *length);
130 static uint8_t *USBD_CDC_GetOtherSpeedCfgDesc (uint16_t *length);
132 uint8_t *USBD_CDC_GetDeviceQualifierDescriptor (uint16_t *length);
740 static uint8_t *USBD_CDC_GetFSCfgDesc (uint16_t *length) in USBD_CDC_GetFSCfgDesc() argument
742 *length = sizeof (USBD_CDC_CfgFSDesc); in USBD_CDC_GetFSCfgDesc()
753 static uint8_t *USBD_CDC_GetHSCfgDesc (uint16_t *length) in USBD_CDC_GetHSCfgDesc() argument
755 *length = sizeof (USBD_CDC_CfgHSDesc); in USBD_CDC_GetHSCfgDesc()
766 static uint8_t *USBD_CDC_GetOtherSpeedCfgDesc (uint16_t *length) in USBD_CDC_GetOtherSpeedCfgDesc() argument
[all …]
/loramac-node-3.4.0/src/boards/mcu/saml21/hal/src/
Dhal_usart_sync.c53 …_sync_write(struct io_descriptor *const io_descr, const uint8_t *const buf, const uint16_t length);
54 …t usart_sync_read(struct io_descriptor *const io_descr, uint8_t *const buf, const uint16_t length);
246 …t_sync_write(struct io_descriptor *const io_descr, const uint8_t *const buf, const uint16_t length) in usart_sync_write() argument
251 ASSERT(io_descr && buf && length); in usart_sync_write()
258 } while (++offset < length); in usart_sync_write()
272 …_t usart_sync_read(struct io_descriptor *const io_descr, uint8_t *const buf, const uint16_t length) in usart_sync_read() argument
277 ASSERT(io_descr && buf && length); in usart_sync_read()
282 } while (++offset < length); in usart_sync_read()
Dhal_io.c60 …2_t io_write(struct io_descriptor *const io_descr, const uint8_t *const buf, const uint16_t length) in io_write() argument
63 return io_descr->write(io_descr, buf, length); in io_write()
69 int32_t io_read(struct io_descriptor *const io_descr, uint8_t *const buf, const uint16_t length) in io_read() argument
72 return io_descr->read(io_descr, buf, length); in io_read()
Dhal_spi_m_sync.c59 …i_m_sync_io_write(struct io_descriptor *const io, const uint8_t *const buf, const uint16_t length);
60 …2_t _spi_m_sync_io_read(struct io_descriptor *const io, uint8_t *const buf, const uint16_t length);
143 static int32_t _spi_m_sync_io_read(struct io_descriptor *io, uint8_t *buf, const uint16_t length) in _spi_m_sync_io_read() argument
152 xfer.size = length; in _spi_m_sync_io_read()
171 …pi_m_sync_io_write(struct io_descriptor *const io, const uint8_t *const buf, const uint16_t length) in _spi_m_sync_io_write() argument
180 xfer.size = length; in _spi_m_sync_io_write()
Dhal_i2c_m_sync.c162 …2_t i2c_m_sync_cmd_write(struct i2c_m_sync_desc *i2c, uint8_t reg, uint8_t *buffer, uint8_t length) in i2c_m_sync_cmd_write() argument
181 msg.len = length; in i2c_m_sync_cmd_write()
196 …32_t i2c_m_sync_cmd_read(struct i2c_m_sync_desc *i2c, uint8_t reg, uint8_t *buffer, uint8_t length) in i2c_m_sync_cmd_read() argument
215 msg.len = length; in i2c_m_sync_cmd_read()
/loramac-node-3.4.0/src/boards/mcu/saml21/hal/include/
Dhal_io.h69 …io_write_t)(struct io_descriptor *const io_descr, const uint8_t *const buf, const uint16_t length);
74 …32_t (*io_read_t)(struct io_descriptor *const io_descr, uint8_t *const buf, const uint16_t length);
96 …_t io_write(struct io_descriptor *const io_descr, const uint8_t *const buf, const uint16_t length);
114 int32_t io_read(struct io_descriptor *const io_descr, uint8_t *const buf, const uint16_t length);
Dhal_i2c_m_sync.h167 …_t i2c_m_sync_cmd_write(struct i2c_m_sync_desc *i2c, uint8_t reg, uint8_t *buffer, uint8_t length);
187 …2_t i2c_m_sync_cmd_read(struct i2c_m_sync_desc *i2c, uint8_t reg, uint8_t *buffer, uint8_t length);
Dhpl_spi_m_dma.h180 const uint16_t length);
/loramac-node-3.4.0/src/boards/mcu/
Dutilities.c94 uint32_t Crc32( uint8_t *buffer, uint16_t length ) in Crc32() argument
107 for( uint16_t i = 0; i < length; ++i ) in Crc32()
124 uint32_t Crc32Update( uint32_t crcInit, uint8_t *buffer, uint16_t length ) in Crc32Update() argument
137 for( uint16_t i = 0; i < length; ++i ) in Crc32Update()
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32_USB_Device_Library/Class/DFU/Src/
Dusbd_dfu.c120 static uint8_t *USBD_DFU_GetCfgDesc (uint16_t *length);
122 static uint8_t *USBD_DFU_GetDeviceQualifierDesc (uint16_t *length);
139 …c uint8_t* USBD_DFU_GetUsrStringDesc ( USBD_HandleTypeDef *pdev, uint8_t index , uint16_t *length);
465 static uint8_t *USBD_DFU_GetCfgDesc (uint16_t *length) in USBD_DFU_GetCfgDesc() argument
467 *length = sizeof (USBD_DFU_CfgDesc); in USBD_DFU_GetCfgDesc()
637 static uint8_t *USBD_DFU_GetDeviceQualifierDesc (uint16_t *length) in USBD_DFU_GetDeviceQualifierDesc() argument
639 *length = sizeof (USBD_DFU_DeviceQualifierDesc); in USBD_DFU_GetDeviceQualifierDesc()
652 …tic uint8_t* USBD_DFU_GetUsrStringDesc (USBD_HandleTypeDef *pdev, uint8_t index , uint16_t *length) in USBD_DFU_GetUsrStringDesc() argument
658 …_GetString ((uint8_t *)((USBD_DFU_MediaTypeDef *)pdev->pUserData)->pStrDesc, USBD_StrDesc, length); in USBD_DFU_GetUsrStringDesc()
/loramac-node-3.4.0/src/boards/
Dutilities.h150 uint32_t Crc32( uint8_t *buffer, uint16_t length );
169 uint32_t Crc32Update( uint32_t crcInit, uint8_t *buffer, uint16_t length );
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32_USB_Device_Library/Class/CDC/Inc/
Dusbd_cdc.h154 uint16_t length);
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Inc/
Dstm32l4xx_hal_hcd.h253 uint16_t length,
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_hal_hcd.c376 uint16_t length, in HAL_HCD_HC_SubmitRequest() argument
399 if (length == 0U) in HAL_HCD_HC_SubmitRequest()
484 hhcd->hc[ch_num].xfer_len = length; in HAL_HCD_HC_SubmitRequest()
/loramac-node-3.4.0/
DCHANGELOG.md559 - Issue(#63) correct the maximum payload length in RX mode
632 - Fixed the Radio maximum payload length management. Radio was filtering received frames with a len…
650 - Added the limitation of the applicative payload length according to the data rate. Does not yet t…
714 - Fixed handling of the MAC commands which was done incorrectly the condition to verify the length
1013 - Added to the radio driver the possibility to choose the preamble length and rxSingle symbol timeo…
/loramac-node-3.4.0/src/mac/
DLoRaMacClassB.c383 static uint16_t BeaconCrc( uint8_t *buffer, uint16_t length ) in BeaconCrc() argument
395 for( uint16_t i = 0; i < length; ++i ) in BeaconCrc()