add mqttclient to the component, and add fire stm32f429 board demo.
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* @Author: jiejie
|
||||
* @Github: https://github.com/jiejieTop
|
||||
* @Date: 2019-12-15 18:31:33
|
||||
* @LastEditTime : 2020-01-16 00:19:10
|
||||
* @Description: the code belongs to jiejie, please keep the author information and source code according to the license.
|
||||
*/
|
||||
#ifndef _PLATFORM_MUTEX_H_
|
||||
#define _PLATFORM_MUTEX_H_
|
||||
|
||||
#include "tos_k.h"
|
||||
|
||||
typedef struct platform_mutex {
|
||||
k_mutex_t mutex;
|
||||
} platform_mutex_t;
|
||||
|
||||
int platform_mutex_init(platform_mutex_t* m);
|
||||
int platform_mutex_lock(platform_mutex_t* m);
|
||||
int platform_mutex_trylock(platform_mutex_t* m);
|
||||
int platform_mutex_unlock(platform_mutex_t* m);
|
||||
int platform_mutex_destroy(platform_mutex_t* m);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user