mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-13 00:07:12 +00:00
5f4f4fcc60
* System code added to felica hal config functions * Felica sensf_res setup logic adjusted with new struct * Set api symbols version to 73.0 * Felica unit tests fix * Furi: prevent use after free on xEventGroupSetBits call Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
75 lines
1.7 KiB
C
75 lines
1.7 KiB
C
/**
|
|
* @file event_flag.h
|
|
* Furi Event Flag
|
|
*/
|
|
#pragma once
|
|
|
|
#include "base.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct FuriEventFlag FuriEventFlag;
|
|
|
|
/** Allocate FuriEventFlag
|
|
*
|
|
* @return pointer to FuriEventFlag
|
|
*/
|
|
FuriEventFlag* furi_event_flag_alloc(void);
|
|
|
|
/** Deallocate FuriEventFlag
|
|
*
|
|
* @param instance pointer to FuriEventFlag
|
|
*/
|
|
void furi_event_flag_free(FuriEventFlag* instance);
|
|
|
|
/** Set flags
|
|
*
|
|
* @warning result of this function can be flags that you've just asked to
|
|
* set or not if someone was waiting for them and asked to clear it.
|
|
* It is highly recommended to read this function and
|
|
* xEventGroupSetBits source code.
|
|
*
|
|
* @param instance pointer to FuriEventFlag
|
|
* @param[in] flags The flags to set
|
|
*
|
|
* @return Resulting flags(see warning) or error (FuriStatus)
|
|
*/
|
|
uint32_t furi_event_flag_set(FuriEventFlag* instance, uint32_t flags);
|
|
|
|
/** Clear flags
|
|
*
|
|
* @param instance pointer to FuriEventFlag
|
|
* @param[in] flags The flags
|
|
*
|
|
* @return Resulting flags or error (FuriStatus)
|
|
*/
|
|
uint32_t furi_event_flag_clear(FuriEventFlag* instance, uint32_t flags);
|
|
|
|
/** Get flags
|
|
*
|
|
* @param instance pointer to FuriEventFlag
|
|
*
|
|
* @return Resulting flags
|
|
*/
|
|
uint32_t furi_event_flag_get(FuriEventFlag* instance);
|
|
|
|
/** Wait flags
|
|
*
|
|
* @param instance pointer to FuriEventFlag
|
|
* @param[in] flags The flags
|
|
* @param[in] options The option flags
|
|
* @param[in] timeout The timeout
|
|
*
|
|
* @return Resulting flags or error (FuriStatus)
|
|
*/
|
|
uint32_t furi_event_flag_wait(
|
|
FuriEventFlag* instance,
|
|
uint32_t flags,
|
|
uint32_t options,
|
|
uint32_t timeout);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|