AndroidのBLEラジコンプロポアプリ「BLEPropo」と接続し、RCサーボとDCモータを制御するプログラムです。 BLE Nanoで動作を確認しています。 BLEPropo → https://github.com/lipoyang/BLEPropo
app_fifo.h File Reference
Go to the source code of this file.
Data Structures | |
| struct | app_fifo_t |
| A FIFO instance structure. More... | |
Functions | |
| uint32_t | app_fifo_init (app_fifo_t *p_fifo, uint8_t *p_buf, uint16_t buf_size) |
| Function for initializing the FIFO. | |
| uint32_t | app_fifo_put (app_fifo_t *p_fifo, uint8_t byte) |
| Function for adding an element to the FIFO. | |
| uint32_t | app_fifo_get (app_fifo_t *p_fifo, uint8_t *p_byte) |
| Function for getting the next element from the FIFO. | |
| uint32_t | app_fifo_flush (app_fifo_t *p_fifo) |
| Function for flushing the FIFO. | |
Detailed Description
Definition in file app_fifo.h.
Generated on Tue Jul 12 2022 16:00:46 by
1.7.2
Bizan Nishimura