Improvements (#11)

* Use default include

* Add conversions

* Add TryReceive
This commit was merged in pull request #11.
This commit is contained in:
Stefano Calabretti
2022-04-11 15:50:56 +02:00
committed by GitHub
parent aec32cb58e
commit efdd4655a3
6 changed files with 63 additions and 16 deletions
+5 -5
View File
@@ -73,11 +73,11 @@
*
* Asynchronous logic can be easily implemented using State Machines
*/
typedef enum MmrAsyncResult {
MMR_ASYNC_RESULT_ERROR,
MMR_ASYNC_RESULT_PENDING,
MMR_ASYNC_RESULT_COMPLETED,
} MmrAsyncResult;
typedef enum MmrResult {
MMR_RESULT_ERROR,
MMR_RESULT_PENDING,
MMR_RESULT_COMPLETED,
} MmrResult;
#endif /* INC_MMR_CAN_UTIL_H_ */