Home
last modified time | relevance | path

Searched refs:parity (Results 1 – 19 of 19) sorted by relevance

/loramac-node-3.7.0/src/apps/LoRaMac/common/LmHandler/packages/
DFragDecoder.c130 static void SetParity( uint16_t index, uint8_t *matrixRow, uint8_t parity );
524 uint8_t parity; in GetParity() local
525 parity = matrixRow[index >> 3]; in GetParity()
526 parity = ( parity >> ( 7 - ( index % 8 ) ) ) & 0x01; in GetParity()
527 return parity; in GetParity()
530 static void SetParity( uint16_t index, uint8_t *matrixRow, uint8_t parity ) in SetParity() argument
533 parity = parity << ( 7 - ( index % 8 ) ); in SetParity()
534 matrixRow[index >> 3] = ( matrixRow[index >> 3] & mask ) + parity; in SetParity()
/loramac-node-3.7.0/src/boards/NucleoL073/
Duart-board.c62 …int32_t baudrate, WordLength_t wordLength, StopBits_t stopBits, Parity_t parity, FlowCtrl_t flowCt… in UartMcuConfig() argument
67 UartUsbConfig( obj, mode, baudrate, wordLength, stopBits, parity, flowCtrl ); in UartMcuConfig()
127 if( parity == NO_PARITY ) in UartMcuConfig()
131 else if( parity == EVEN_PARITY ) in UartMcuConfig()
/loramac-node-3.7.0/src/boards/SKiM880B/
Duart-board.c62 …int32_t baudrate, WordLength_t wordLength, StopBits_t stopBits, Parity_t parity, FlowCtrl_t flowCt… in UartMcuConfig() argument
67 UartUsbConfig( obj, mode, baudrate, wordLength, stopBits, parity, flowCtrl ); in UartMcuConfig()
124 if( parity == NO_PARITY ) in UartMcuConfig()
128 else if( parity == EVEN_PARITY ) in UartMcuConfig()
/loramac-node-3.7.0/src/boards/SKiM881AXL/
Duart-board.c62 …int32_t baudrate, WordLength_t wordLength, StopBits_t stopBits, Parity_t parity, FlowCtrl_t flowCt… in UartMcuConfig() argument
67 UartUsbConfig( obj, mode, baudrate, wordLength, stopBits, parity, flowCtrl ); in UartMcuConfig()
127 if( parity == NO_PARITY ) in UartMcuConfig()
131 else if( parity == EVEN_PARITY ) in UartMcuConfig()
/loramac-node-3.7.0/src/boards/SKiM980A/
Duart-board.c62 …int32_t baudrate, WordLength_t wordLength, StopBits_t stopBits, Parity_t parity, FlowCtrl_t flowCt… in UartMcuConfig() argument
67 UartUsbConfig( obj, mode, baudrate, wordLength, stopBits, parity, flowCtrl ); in UartMcuConfig()
124 if( parity == NO_PARITY ) in UartMcuConfig()
128 else if( parity == EVEN_PARITY ) in UartMcuConfig()
/loramac-node-3.7.0/src/boards/B-L072Z-LRWAN1/
Duart-board.c62 …int32_t baudrate, WordLength_t wordLength, StopBits_t stopBits, Parity_t parity, FlowCtrl_t flowCt… in UartMcuConfig() argument
67 UartUsbConfig( obj, mode, baudrate, wordLength, stopBits, parity, flowCtrl ); in UartMcuConfig()
127 if( parity == NO_PARITY ) in UartMcuConfig()
131 else if( parity == EVEN_PARITY ) in UartMcuConfig()
/loramac-node-3.7.0/src/boards/NucleoL476/
Duart-board.c62 …int32_t baudrate, WordLength_t wordLength, StopBits_t stopBits, Parity_t parity, FlowCtrl_t flowCt… in UartMcuConfig() argument
67 UartUsbConfig( obj, mode, baudrate, wordLength, stopBits, parity, flowCtrl ); in UartMcuConfig()
124 if( parity == NO_PARITY ) in UartMcuConfig()
128 else if( parity == EVEN_PARITY ) in UartMcuConfig()
/loramac-node-3.7.0/src/boards/NucleoL152/
Duart-board.c62 …int32_t baudrate, WordLength_t wordLength, StopBits_t stopBits, Parity_t parity, FlowCtrl_t flowCt… in UartMcuConfig() argument
67 UartUsbConfig( obj, mode, baudrate, wordLength, stopBits, parity, flowCtrl ); in UartMcuConfig()
124 if( parity == NO_PARITY ) in UartMcuConfig()
128 else if( parity == EVEN_PARITY ) in UartMcuConfig()
/loramac-node-3.7.0/src/system/
Duart.c35 …int32_t baudrate, WordLength_t wordLength, StopBits_t stopBits, Parity_t parity, FlowCtrl_t flowCt… in UartConfig() argument
37 UartMcuConfig( obj, mode, baudrate, wordLength, stopBits, parity, flowCtrl ); in UartConfig()
Duart.h143 …int32_t baudrate, WordLength_t wordLength, StopBits_t stopBits, Parity_t parity, FlowCtrl_t flowCt…
/loramac-node-3.7.0/src/boards/NAMote72/
Duart-board.c80 …int32_t baudrate, WordLength_t wordLength, StopBits_t stopBits, Parity_t parity, FlowCtrl_t flowCt… in UartMcuConfig() argument
85 UartUsbConfig( obj, mode, baudrate, wordLength, stopBits, parity, flowCtrl ); in UartMcuConfig()
149 if( parity == NO_PARITY ) in UartMcuConfig()
153 else if( parity == EVEN_PARITY ) in UartMcuConfig()
/loramac-node-3.7.0/src/boards/mcu/saml21/hal/src/
Dhal_usart_sync.c169 …_t usart_sync_set_parity(struct usart_sync_descriptor *const descr, const enum usart_parity parity) in usart_sync_set_parity() argument
172 _usart_sync_set_parity(&descr->device, parity); in usart_sync_set_parity()
/loramac-node-3.7.0/src/boards/
Duart-usb-board.h54 …int32_t baudrate, WordLength_t wordLength, StopBits_t stopBits, Parity_t parity, FlowCtrl_t flowCt…
Duart-board.h56 …int32_t baudrate, WordLength_t wordLength, StopBits_t stopBits, Parity_t parity, FlowCtrl_t flowCt…
/loramac-node-3.7.0/src/boards/mcu/saml21/hal/include/
Dhpl_usart_sync.h156 void _usart_sync_set_parity(struct _usart_sync_device *const device, const enum usart_parity parity
Dhal_usart_sync.h185 …t usart_sync_set_parity(struct usart_sync_descriptor *const descr, const enum usart_parity parity);
Dhpl_usart_async.h180 … _usart_async_set_parity(struct _usart_async_device *const device, const enum usart_parity parity);
/loramac-node-3.7.0/src/boards/SAMR34/
Duart-board.c53 …int32_t baudrate, WordLength_t wordLength, StopBits_t stopBits, Parity_t parity, FlowCtrl_t flowCt… in UartMcuConfig() argument
/loramac-node-3.7.0/src/boards/mcu/saml21/hpl/sercom/
Dhpl_sercom.c182 static void _usart_set_parity(void *const hw, const enum usart_parity parity);
338 void _usart_sync_set_parity(struct _usart_sync_device *const device, const enum usart_parity parity) in _usart_sync_set_parity() argument
340 _usart_set_parity(device->hw, parity); in _usart_sync_set_parity()
346 …d _usart_async_set_parity(struct _usart_async_device *const device, const enum usart_parity parity) in _usart_async_set_parity() argument
348 _usart_set_parity(device->hw, parity); in _usart_async_set_parity()
730 static void _usart_set_parity(void *const hw, const enum usart_parity parity) in _usart_set_parity() argument
739 if (USART_PARITY_NONE != parity) { in _usart_set_parity()
745 hri_sercomusart_write_CTRLB_PMODE_bit(hw, parity); in _usart_set_parity()