Embedded Wireless Framework
|
Hardware interface functions implemented per platform. More...
Functions | |
ewf_result | ewf_interface_process_byte (ewf_interface *interface_ptr, uint8_t b) |
Called by the hardware code to process an incoming byte When the hardware interface receives a byte it used this function to pase this byte to the common code for further processing. Typically used to process commands, when in command mode. More... | |
ewf_result | ewf_interface_process_buffer (ewf_interface *interface_ptr, uint8_t *buffer_ptr, uint32_t buffer_length) |
Called by the hardware code to process a buffer When the hardware interface receives a byte it used this function to pase this byte to the common code for further processing. Typically used to process data. More... | |
Hardware interface functions implemented per platform.
*** group_interface_tokenizer
ewf_result ewf_interface_process_buffer | ( | ewf_interface * | interface_ptr, |
uint8_t * | buffer_ptr, | ||
uint32_t | buffer_length | ||
) |
Called by the hardware code to process a buffer When the hardware interface receives a byte it used this function to pase this byte to the common code for further processing. Typically used to process data.
[in] | interface_ptr | a pointer to the interface data structure |
[in] | buffer_ptr | a pointer to the incomming buffer to be processed |
[in] | buffer_length | the size of the data pointe by the buffer_ptr parameter |
ewf_result ewf_interface_process_byte | ( | ewf_interface * | interface_ptr, |
uint8_t | b | ||
) |
Called by the hardware code to process an incoming byte When the hardware interface receives a byte it used this function to pase this byte to the common code for further processing. Typically used to process commands, when in command mode.
[in] | interface_ptr | a pointer to the interface data structure |
[in] | b | the incomming byte to be processed |