mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +04:00
subghz things and remove rtos finally
This commit is contained in:
@@ -95,18 +95,17 @@ void archive_free(ArchiveApp* archive) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void archive_show_loading_popup(ArchiveApp* context, bool show) {
|
void archive_show_loading_popup(ArchiveApp* context, bool show) {
|
||||||
TaskHandle_t timer_task = xTaskGetHandle(configTIMER_SERVICE_TASK_NAME);
|
|
||||||
ViewStack* view_stack = context->view_stack;
|
ViewStack* view_stack = context->view_stack;
|
||||||
Loading* loading = context->loading;
|
Loading* loading = context->loading;
|
||||||
|
|
||||||
if(show) {
|
if(show) {
|
||||||
// Raise timer priority so that animations can play
|
// Raise timer priority so that animations can play
|
||||||
vTaskPrioritySet(timer_task, configMAX_PRIORITIES - 1);
|
furi_timer_set_thread_priority(FuriTimerThreadPriorityElevated);
|
||||||
view_stack_add_view(view_stack, loading_get_view(loading));
|
view_stack_add_view(view_stack, loading_get_view(loading));
|
||||||
} else {
|
} else {
|
||||||
view_stack_remove_view(view_stack, loading_get_view(loading));
|
view_stack_remove_view(view_stack, loading_get_view(loading));
|
||||||
// Restore default timer priority
|
// Restore default timer priority
|
||||||
vTaskPrioritySet(timer_task, configTIMER_TASK_PRIORITY);
|
furi_timer_set_thread_priority(FuriTimerThreadPriorityNormal);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ void subghz_view_receiver_set_lock(SubGhzViewReceiver* subghz_receiver, bool loc
|
|||||||
SubGhzViewReceiverModel * model,
|
SubGhzViewReceiverModel * model,
|
||||||
{ model->bar_show = SubGhzViewReceiverBarShowLock; },
|
{ model->bar_show = SubGhzViewReceiverBarShowLock; },
|
||||||
true);
|
true);
|
||||||
furi_timer_start(subghz_receiver->timer, pdMS_TO_TICKS(1000));
|
furi_timer_start(subghz_receiver->timer, 1000);
|
||||||
} else {
|
} else {
|
||||||
with_view_model(
|
with_view_model(
|
||||||
subghz_receiver->view,
|
subghz_receiver->view,
|
||||||
@@ -453,7 +453,7 @@ bool subghz_view_receiver_input(InputEvent* event, void* context) {
|
|||||||
{ model->bar_show = SubGhzViewReceiverBarShowToUnlockPress; },
|
{ model->bar_show = SubGhzViewReceiverBarShowToUnlockPress; },
|
||||||
true);
|
true);
|
||||||
if(subghz_receiver->lock_count == 0) {
|
if(subghz_receiver->lock_count == 0) {
|
||||||
furi_timer_start(subghz_receiver->timer, pdMS_TO_TICKS(1000));
|
furi_timer_start(subghz_receiver->timer, 1000);
|
||||||
}
|
}
|
||||||
if(event->key == InputKeyBack && event->type == InputTypeShort) {
|
if(event->key == InputKeyBack && event->type == InputTypeShort) {
|
||||||
subghz_receiver->lock_count++;
|
subghz_receiver->lock_count++;
|
||||||
@@ -467,7 +467,7 @@ bool subghz_view_receiver_input(InputEvent* event, void* context) {
|
|||||||
{ model->bar_show = SubGhzViewReceiverBarShowUnlock; },
|
{ model->bar_show = SubGhzViewReceiverBarShowUnlock; },
|
||||||
true);
|
true);
|
||||||
//subghz_receiver->lock = false;
|
//subghz_receiver->lock = false;
|
||||||
furi_timer_start(subghz_receiver->timer, pdMS_TO_TICKS(650));
|
furi_timer_start(subghz_receiver->timer, 650);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -23,24 +23,6 @@ void* subghz_protocol_encoder_alutech_at_4n_alloc(SubGhzEnvironment* environment
|
|||||||
*/
|
*/
|
||||||
void subghz_protocol_encoder_alutech_at_4n_free(void* context);
|
void subghz_protocol_encoder_alutech_at_4n_free(void* context);
|
||||||
|
|
||||||
/**
|
|
||||||
* Key generation from simple data.
|
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderAlutech_at_4n instance
|
|
||||||
* @param flipper_format Pointer to a FlipperFormat instance
|
|
||||||
* @param serial Serial number, 24 bit
|
|
||||||
* @param btn Button number, 8 bit
|
|
||||||
* @param cnt Counter value, 16 bit
|
|
||||||
* @param preset Modulation, SubGhzRadioPreset
|
|
||||||
* @return true On success
|
|
||||||
*/
|
|
||||||
bool subghz_protocol_alutech_at_4n_create_data(
|
|
||||||
void* context,
|
|
||||||
FlipperFormat* flipper_format,
|
|
||||||
uint32_t serial,
|
|
||||||
uint8_t btn,
|
|
||||||
uint16_t cnt,
|
|
||||||
SubGhzRadioPreset* preset);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deserialize and generating an upload to send.
|
* Deserialize and generating an upload to send.
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderAlutech_at_4n instance
|
* @param context Pointer to a SubGhzProtocolEncoderAlutech_at_4n instance
|
||||||
|
|||||||
@@ -14,22 +14,6 @@ void atomo_decrypt(uint8_t* buff);
|
|||||||
|
|
||||||
void atomo_encrypt(uint8_t* buff);
|
void atomo_encrypt(uint8_t* buff);
|
||||||
|
|
||||||
/**
|
|
||||||
* Key generation from simple data.
|
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderCameAtomo instance
|
|
||||||
* @param flipper_format Pointer to a FlipperFormat instance
|
|
||||||
* @param serial Serial number, 24 bit
|
|
||||||
* @param cnt Counter value, 16 bit
|
|
||||||
* @param preset Modulation, SubGhzRadioPreset
|
|
||||||
* @return true On success
|
|
||||||
*/
|
|
||||||
bool subghz_protocol_came_atomo_create_data(
|
|
||||||
void* context,
|
|
||||||
FlipperFormat* flipper_format,
|
|
||||||
uint32_t serial,
|
|
||||||
uint16_t cnt,
|
|
||||||
SubGhzRadioPreset* preset);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allocate SubGhzProtocolEncoderCameAtomo.
|
* Allocate SubGhzProtocolEncoderCameAtomo.
|
||||||
* @param environment Pointer to a SubGhzEnvironment instance
|
* @param environment Pointer to a SubGhzEnvironment instance
|
||||||
|
|||||||
@@ -24,28 +24,6 @@ void* subghz_protocol_encoder_faac_slh_alloc(SubGhzEnvironment* environment);
|
|||||||
*/
|
*/
|
||||||
void subghz_protocol_encoder_faac_slh_free(void* context);
|
void subghz_protocol_encoder_faac_slh_free(void* context);
|
||||||
|
|
||||||
/**
|
|
||||||
* Key generation from simple data.
|
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderFaacSLH instance
|
|
||||||
* @param flipper_format Pointer to a FlipperFormat instance
|
|
||||||
* @param serial Serial number, 28 bit
|
|
||||||
* @param btn Button number, 4 bit
|
|
||||||
* @param cnt Counter value, 16 bit
|
|
||||||
* @param seed Seed value, 32 bit
|
|
||||||
* @param manufacture_name Name of manufacturer's key
|
|
||||||
* @param preset Modulation, SubGhzRadioPreset
|
|
||||||
* @return true On success
|
|
||||||
*/
|
|
||||||
bool subghz_protocol_faac_slh_create_data(
|
|
||||||
void* context,
|
|
||||||
FlipperFormat* flipper_format,
|
|
||||||
uint32_t serial,
|
|
||||||
uint8_t btn,
|
|
||||||
uint32_t cnt,
|
|
||||||
uint32_t seed,
|
|
||||||
const char* manufacture_name,
|
|
||||||
SubGhzRadioPreset* preset);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deserialize and generating an upload to send.
|
* Deserialize and generating an upload to send.
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderFaacSLH instance
|
* @param context Pointer to a SubGhzProtocolEncoderFaacSLH instance
|
||||||
|
|||||||
@@ -25,48 +25,6 @@ void* subghz_protocol_encoder_keeloq_alloc(SubGhzEnvironment* environment);
|
|||||||
*/
|
*/
|
||||||
void subghz_protocol_encoder_keeloq_free(void* context);
|
void subghz_protocol_encoder_keeloq_free(void* context);
|
||||||
|
|
||||||
/**
|
|
||||||
* Key generation from simple data.
|
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderKeeloq instance
|
|
||||||
* @param flipper_format Pointer to a FlipperFormat instance
|
|
||||||
* @param serial Serial number, 28 bit
|
|
||||||
* @param btn Button number, 4 bit
|
|
||||||
* @param cnt Counter value, 16 bit
|
|
||||||
* @param manufacture_name Name of manufacturer's key
|
|
||||||
* @param preset Modulation, SubGhzRadioPreset
|
|
||||||
* @return true On success
|
|
||||||
*/
|
|
||||||
bool subghz_protocol_keeloq_create_data(
|
|
||||||
void* context,
|
|
||||||
FlipperFormat* flipper_format,
|
|
||||||
uint32_t serial,
|
|
||||||
uint8_t btn,
|
|
||||||
uint16_t cnt,
|
|
||||||
const char* manufacture_name,
|
|
||||||
SubGhzRadioPreset* preset);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Key generation for BFT.
|
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderKeeloq instance
|
|
||||||
* @param flipper_format Pointer to a FlipperFormat instance
|
|
||||||
* @param serial Serial number, 28 bit
|
|
||||||
* @param btn Button number, 4 bit
|
|
||||||
* @param cnt Counter value, 16 bit
|
|
||||||
* @param seed Seed value, 32 bit
|
|
||||||
* @param manufacture_name Name of manufacturer's key
|
|
||||||
* @param preset Modulation, SubGhzRadioPreset
|
|
||||||
* @return true On success
|
|
||||||
*/
|
|
||||||
bool subghz_protocol_keeloq_bft_create_data(
|
|
||||||
void* context,
|
|
||||||
FlipperFormat* flipper_format,
|
|
||||||
uint32_t serial,
|
|
||||||
uint8_t btn,
|
|
||||||
uint16_t cnt,
|
|
||||||
uint32_t seed,
|
|
||||||
const char* manufacture_name,
|
|
||||||
SubGhzRadioPreset* preset);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deserialize and generating an upload to send.
|
* Deserialize and generating an upload to send.
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderKeeloq instance
|
* @param context Pointer to a SubGhzProtocolEncoderKeeloq instance
|
||||||
|
|||||||
@@ -48,26 +48,6 @@ LevelDuration subghz_protocol_encoder_nice_flor_s_yield(void* context);
|
|||||||
|
|
||||||
uint64_t subghz_protocol_nice_flor_s_encrypt(uint64_t data, const char* file_name);
|
uint64_t subghz_protocol_nice_flor_s_encrypt(uint64_t data, const char* file_name);
|
||||||
|
|
||||||
/**
|
|
||||||
* New remote generation.
|
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderNiceFlorS instance
|
|
||||||
* @param flipper_format Pointer to a FlipperFormat instance
|
|
||||||
* @param serial Serial number
|
|
||||||
* @param btn Button number, 4 bit
|
|
||||||
* @param cnt Counter value, 16 bit
|
|
||||||
* @param preset Modulation, SubGhzRadioPreset
|
|
||||||
* @param nice_one Nice One if true, Nice Flor S if false
|
|
||||||
* @return true On success
|
|
||||||
*/
|
|
||||||
bool subghz_protocol_nice_flor_s_create_data(
|
|
||||||
void* context,
|
|
||||||
FlipperFormat* flipper_format,
|
|
||||||
uint32_t serial,
|
|
||||||
uint8_t btn,
|
|
||||||
uint16_t cnt,
|
|
||||||
SubGhzRadioPreset* preset,
|
|
||||||
bool nice_one);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allocate SubGhzProtocolDecoderNiceFlorS.
|
* Allocate SubGhzProtocolDecoderNiceFlorS.
|
||||||
* @param environment Pointer to a SubGhzEnvironment instance
|
* @param environment Pointer to a SubGhzEnvironment instance
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ bool subghz_protocol_secplus_v2_create_data(
|
|||||||
* @param flipper_format Pointer to a FlipperFormat instance
|
* @param flipper_format Pointer to a FlipperFormat instance
|
||||||
* @param serial Serial number, 28 bit
|
* @param serial Serial number, 28 bit
|
||||||
* @param btn Button number, 4 bit
|
* @param btn Button number, 4 bit
|
||||||
* @param cnt Container value, 16 bit
|
* @param cnt Counter value, 16 bit
|
||||||
* @param manufacture_name Name of manufacturer's key
|
* @param manufacture_name Name of manufacturer's key
|
||||||
* @param preset Modulation, SubGhzRadioPreset
|
* @param preset Modulation, SubGhzRadioPreset
|
||||||
* @return true On success
|
* @return true On success
|
||||||
@@ -45,6 +45,160 @@ bool subghz_protocol_keeloq_create_data(
|
|||||||
const char* manufacture_name,
|
const char* manufacture_name,
|
||||||
SubGhzRadioPreset* preset);
|
SubGhzRadioPreset* preset);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Key generation for BFT.
|
||||||
|
* @param context Pointer to a SubGhzProtocolEncoderKeeloq instance
|
||||||
|
* @param flipper_format Pointer to a FlipperFormat instance
|
||||||
|
* @param serial Serial number, 28 bit
|
||||||
|
* @param btn Button number, 4 bit
|
||||||
|
* @param cnt Counter value, 16 bit
|
||||||
|
* @param seed Seed value, 32 bit
|
||||||
|
* @param manufacture_name Name of manufacturer's key
|
||||||
|
* @param preset Modulation, SubGhzRadioPreset
|
||||||
|
* @return true On success
|
||||||
|
*/
|
||||||
|
bool subghz_protocol_keeloq_bft_create_data(
|
||||||
|
void* context,
|
||||||
|
FlipperFormat* flipper_format,
|
||||||
|
uint32_t serial,
|
||||||
|
uint8_t btn,
|
||||||
|
uint16_t cnt,
|
||||||
|
uint32_t seed,
|
||||||
|
const char* manufacture_name,
|
||||||
|
SubGhzRadioPreset* preset);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Key generation from simple data.
|
||||||
|
* @param context Pointer to a SubGhzProtocolEncoderFaacSLH instance
|
||||||
|
* @param flipper_format Pointer to a FlipperFormat instance
|
||||||
|
* @param serial Serial number, 28 bit
|
||||||
|
* @param btn Button number, 4 bit
|
||||||
|
* @param cnt Counter value, 16 bit
|
||||||
|
* @param seed Seed value, 32 bit
|
||||||
|
* @param manufacture_name Name of manufacturer's key
|
||||||
|
* @param preset Modulation, SubGhzRadioPreset
|
||||||
|
* @return true On success
|
||||||
|
*/
|
||||||
|
bool subghz_protocol_faac_slh_create_data(
|
||||||
|
void* context,
|
||||||
|
FlipperFormat* flipper_format,
|
||||||
|
uint32_t serial,
|
||||||
|
uint8_t btn,
|
||||||
|
uint32_t cnt,
|
||||||
|
uint32_t seed,
|
||||||
|
const char* manufacture_name,
|
||||||
|
SubGhzRadioPreset* preset);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Key generation from simple data.
|
||||||
|
* @param context Pointer to a SubGhzProtocolEncoderAlutech_at_4n instance
|
||||||
|
* @param flipper_format Pointer to a FlipperFormat instance
|
||||||
|
* @param serial Serial number, 24 bit
|
||||||
|
* @param btn Button number, 8 bit
|
||||||
|
* @param cnt Counter value, 16 bit
|
||||||
|
* @param preset Modulation, SubGhzRadioPreset
|
||||||
|
* @return true On success
|
||||||
|
*/
|
||||||
|
bool subghz_protocol_alutech_at_4n_create_data(
|
||||||
|
void* context,
|
||||||
|
FlipperFormat* flipper_format,
|
||||||
|
uint32_t serial,
|
||||||
|
uint8_t btn,
|
||||||
|
uint16_t cnt,
|
||||||
|
SubGhzRadioPreset* preset);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Key generation from simple data.
|
||||||
|
* @param context Pointer to a SubGhzProtocolEncoderCameAtomo instance
|
||||||
|
* @param flipper_format Pointer to a FlipperFormat instance
|
||||||
|
* @param serial Serial number, 24 bit
|
||||||
|
* @param cnt Counter value, 16 bit
|
||||||
|
* @param preset Modulation, SubGhzRadioPreset
|
||||||
|
* @return true On success
|
||||||
|
*/
|
||||||
|
bool subghz_protocol_came_atomo_create_data(
|
||||||
|
void* context,
|
||||||
|
FlipperFormat* flipper_format,
|
||||||
|
uint32_t serial,
|
||||||
|
uint16_t cnt,
|
||||||
|
SubGhzRadioPreset* preset);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* New remote generation.
|
||||||
|
* @param context Pointer to a SubGhzProtocolEncoderNiceFlorS instance
|
||||||
|
* @param flipper_format Pointer to a FlipperFormat instance
|
||||||
|
* @param serial Serial number
|
||||||
|
* @param btn Button number, 4 bit
|
||||||
|
* @param cnt Counter value, 16 bit
|
||||||
|
* @param preset Modulation, SubGhzRadioPreset
|
||||||
|
* @param nice_one Nice One if true, Nice Flor S if false
|
||||||
|
* @return true On success
|
||||||
|
*/
|
||||||
|
bool subghz_protocol_nice_flor_s_create_data(
|
||||||
|
void* context,
|
||||||
|
FlipperFormat* flipper_format,
|
||||||
|
uint32_t serial,
|
||||||
|
uint8_t btn,
|
||||||
|
uint16_t cnt,
|
||||||
|
SubGhzRadioPreset* preset,
|
||||||
|
bool nice_one);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Key generation from simple data.
|
||||||
|
* @param context Pointer to a SubGhzProtocolEncoderStarLine instance
|
||||||
|
* @param flipper_format Pointer to a FlipperFormat instance
|
||||||
|
* @param serial Serial number, 24 bit
|
||||||
|
* @param btn Button number, 8 bit
|
||||||
|
* @param cnt Counter value, 16 bit
|
||||||
|
* @param manufacture_name Name of manufacturer's key
|
||||||
|
* @param preset Modulation, SubGhzRadioPreset
|
||||||
|
* @return true On success
|
||||||
|
*/
|
||||||
|
bool subghz_protocol_star_line_create_data(
|
||||||
|
void* context,
|
||||||
|
FlipperFormat* flipper_format,
|
||||||
|
uint32_t serial,
|
||||||
|
uint8_t btn,
|
||||||
|
uint16_t cnt,
|
||||||
|
const char* manufacture_name,
|
||||||
|
SubGhzRadioPreset* preset);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Key generation from simple data.
|
||||||
|
* @param context Pointer to a SubGhzProtocolEncoderSomfyTelis instance
|
||||||
|
* @param flipper_format Pointer to a FlipperFormat instance
|
||||||
|
* @param serial Serial number, 24 bit
|
||||||
|
* @param btn Button number, 8 bit
|
||||||
|
* @param cnt Counter value, 16 bit
|
||||||
|
* @param preset Modulation, SubGhzRadioPreset
|
||||||
|
* @return true On success
|
||||||
|
*/
|
||||||
|
bool subghz_protocol_somfy_telis_create_data(
|
||||||
|
void* context,
|
||||||
|
FlipperFormat* flipper_format,
|
||||||
|
uint32_t serial,
|
||||||
|
uint8_t btn,
|
||||||
|
uint16_t cnt,
|
||||||
|
SubGhzRadioPreset* preset);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Key generation from simple data.
|
||||||
|
* @param context Pointer to a SubGhzProtocolEncoderSomfyKeytis instance
|
||||||
|
* @param flipper_format Pointer to a FlipperFormat instance
|
||||||
|
* @param serial Serial number, 24 bit
|
||||||
|
* @param btn Button number, 8 bit
|
||||||
|
* @param cnt Counter value, 16 bit
|
||||||
|
* @param preset Modulation, SubGhzRadioPreset
|
||||||
|
* @return true On success
|
||||||
|
*/
|
||||||
|
bool subghz_protocol_somfy_keytis_create_data(
|
||||||
|
void* context,
|
||||||
|
FlipperFormat* flipper_format,
|
||||||
|
uint32_t serial,
|
||||||
|
uint8_t btn,
|
||||||
|
uint16_t cnt,
|
||||||
|
SubGhzRadioPreset* preset);
|
||||||
|
|
||||||
typedef struct SubGhzProtocolDecoderBinRAW SubGhzProtocolDecoderBinRAW;
|
typedef struct SubGhzProtocolDecoderBinRAW SubGhzProtocolDecoderBinRAW;
|
||||||
|
|
||||||
void subghz_protocol_decoder_bin_raw_data_input_rssi(
|
void subghz_protocol_decoder_bin_raw_data_input_rssi(
|
||||||
|
|||||||
@@ -24,24 +24,6 @@ void* subghz_protocol_encoder_somfy_keytis_alloc(SubGhzEnvironment* environment)
|
|||||||
*/
|
*/
|
||||||
void subghz_protocol_encoder_somfy_keytis_free(void* context);
|
void subghz_protocol_encoder_somfy_keytis_free(void* context);
|
||||||
|
|
||||||
/**
|
|
||||||
* Key generation from simple data.
|
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderSomfyKeytis instance
|
|
||||||
* @param flipper_format Pointer to a FlipperFormat instance
|
|
||||||
* @param serial Serial number, 24 bit
|
|
||||||
* @param btn Button number, 8 bit
|
|
||||||
* @param cnt Counter value, 16 bit
|
|
||||||
* @param preset Modulation, SubGhzRadioPreset
|
|
||||||
* @return true On success
|
|
||||||
*/
|
|
||||||
bool subghz_protocol_somfy_keytis_create_data(
|
|
||||||
void* context,
|
|
||||||
FlipperFormat* flipper_format,
|
|
||||||
uint32_t serial,
|
|
||||||
uint8_t btn,
|
|
||||||
uint16_t cnt,
|
|
||||||
SubGhzRadioPreset* preset);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deserialize and generating an upload to send.
|
* Deserialize and generating an upload to send.
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderSomfyKeytis instance
|
* @param context Pointer to a SubGhzProtocolEncoderSomfyKeytis instance
|
||||||
|
|||||||
@@ -24,24 +24,6 @@ void* subghz_protocol_encoder_somfy_telis_alloc(SubGhzEnvironment* environment);
|
|||||||
*/
|
*/
|
||||||
void subghz_protocol_encoder_somfy_telis_free(void* context);
|
void subghz_protocol_encoder_somfy_telis_free(void* context);
|
||||||
|
|
||||||
/**
|
|
||||||
* Key generation from simple data.
|
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderSomfyTelis instance
|
|
||||||
* @param flipper_format Pointer to a FlipperFormat instance
|
|
||||||
* @param serial Serial number, 24 bit
|
|
||||||
* @param btn Button number, 8 bit
|
|
||||||
* @param cnt Counter value, 16 bit
|
|
||||||
* @param preset Modulation, SubGhzRadioPreset
|
|
||||||
* @return true On success
|
|
||||||
*/
|
|
||||||
bool subghz_protocol_somfy_telis_create_data(
|
|
||||||
void* context,
|
|
||||||
FlipperFormat* flipper_format,
|
|
||||||
uint32_t serial,
|
|
||||||
uint8_t btn,
|
|
||||||
uint16_t cnt,
|
|
||||||
SubGhzRadioPreset* preset);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deserialize and generating an upload to send.
|
* Deserialize and generating an upload to send.
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderSomfyTelis instance
|
* @param context Pointer to a SubGhzProtocolEncoderSomfyTelis instance
|
||||||
|
|||||||
@@ -24,26 +24,6 @@ void* subghz_protocol_encoder_star_line_alloc(SubGhzEnvironment* environment);
|
|||||||
*/
|
*/
|
||||||
void subghz_protocol_encoder_star_line_free(void* context);
|
void subghz_protocol_encoder_star_line_free(void* context);
|
||||||
|
|
||||||
/**
|
|
||||||
* Key generation from simple data.
|
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderStarLine instance
|
|
||||||
* @param flipper_format Pointer to a FlipperFormat instance
|
|
||||||
* @param serial Serial number, 24 bit
|
|
||||||
* @param btn Button number, 8 bit
|
|
||||||
* @param cnt Counter value, 16 bit
|
|
||||||
* @param manufacture_name Name of manufacturer's key
|
|
||||||
* @param preset Modulation, SubGhzRadioPreset
|
|
||||||
* @return true On success
|
|
||||||
*/
|
|
||||||
bool subghz_protocol_star_line_create_data(
|
|
||||||
void* context,
|
|
||||||
FlipperFormat* flipper_format,
|
|
||||||
uint32_t serial,
|
|
||||||
uint8_t btn,
|
|
||||||
uint16_t cnt,
|
|
||||||
const char* manufacture_name,
|
|
||||||
SubGhzRadioPreset* preset);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deserialize and generating an upload to send.
|
* Deserialize and generating an upload to send.
|
||||||
* @param context Pointer to a SubGhzProtocolEncoderStarLine instance
|
* @param context Pointer to a SubGhzProtocolEncoderStarLine instance
|
||||||
|
|||||||
@@ -853,8 +853,6 @@ Function,-,dprintf,int,"int, const char*, ..."
|
|||||||
Function,-,drand48,double,
|
Function,-,drand48,double,
|
||||||
Function,-,drem,double,"double, double"
|
Function,-,drem,double,"double, double"
|
||||||
Function,-,dremf,float,"float, float"
|
Function,-,dremf,float,"float, float"
|
||||||
Function,-,eTaskConfirmSleepModeStatus,eSleepModeStatus,
|
|
||||||
Function,-,eTaskGetState,eTaskState,TaskHandle_t
|
|
||||||
Function,+,elements_bold_rounded_frame,void,"Canvas*, uint8_t, uint8_t, uint8_t, uint8_t"
|
Function,+,elements_bold_rounded_frame,void,"Canvas*, uint8_t, uint8_t, uint8_t, uint8_t"
|
||||||
Function,+,elements_bubble,void,"Canvas*, uint8_t, uint8_t, uint8_t, uint8_t"
|
Function,+,elements_bubble,void,"Canvas*, uint8_t, uint8_t, uint8_t, uint8_t"
|
||||||
Function,+,elements_bubble_str,void,"Canvas*, uint8_t, uint8_t, const char*, Align, Align"
|
Function,+,elements_bubble_str,void,"Canvas*, uint8_t, uint8_t, const char*, Align, Align"
|
||||||
@@ -1685,7 +1683,6 @@ Function,+,furi_string_utf8_push,void,"FuriString*, FuriStringUnicodeValue"
|
|||||||
Function,+,furi_string_vprintf,int,"FuriString*, const char[], va_list"
|
Function,+,furi_string_vprintf,int,"FuriString*, const char[], va_list"
|
||||||
Function,+,furi_thread_alloc,FuriThread*,
|
Function,+,furi_thread_alloc,FuriThread*,
|
||||||
Function,+,furi_thread_alloc_ex,FuriThread*,"const char*, uint32_t, FuriThreadCallback, void*"
|
Function,+,furi_thread_alloc_ex,FuriThread*,"const char*, uint32_t, FuriThreadCallback, void*"
|
||||||
Function,+,furi_thread_catch,void,
|
|
||||||
Function,-,furi_thread_disable_heap_trace,void,FuriThread*
|
Function,-,furi_thread_disable_heap_trace,void,FuriThread*
|
||||||
Function,+,furi_thread_enable_heap_trace,void,FuriThread*
|
Function,+,furi_thread_enable_heap_trace,void,FuriThread*
|
||||||
Function,+,furi_thread_enumerate,uint32_t,"FuriThreadId*, uint32_t"
|
Function,+,furi_thread_enumerate,uint32_t,"FuriThreadId*, uint32_t"
|
||||||
@@ -2423,8 +2420,6 @@ Function,+,pb_read,_Bool,"pb_istream_t*, pb_byte_t*, size_t"
|
|||||||
Function,+,pb_release,void,"const pb_msgdesc_t*, void*"
|
Function,+,pb_release,void,"const pb_msgdesc_t*, void*"
|
||||||
Function,+,pb_skip_field,_Bool,"pb_istream_t*, pb_wire_type_t"
|
Function,+,pb_skip_field,_Bool,"pb_istream_t*, pb_wire_type_t"
|
||||||
Function,+,pb_write,_Bool,"pb_ostream_t*, const pb_byte_t*, size_t"
|
Function,+,pb_write,_Bool,"pb_ostream_t*, const pb_byte_t*, size_t"
|
||||||
Function,-,pcTaskGetName,char*,TaskHandle_t
|
|
||||||
Function,-,pcTimerGetName,const char*,TimerHandle_t
|
|
||||||
Function,-,pclose,int,FILE*
|
Function,-,pclose,int,FILE*
|
||||||
Function,-,perror,void,const char*
|
Function,-,perror,void,const char*
|
||||||
Function,+,plugin_manager_alloc,PluginManager*,"const char*, uint32_t, const ElfApiInterface*"
|
Function,+,plugin_manager_alloc,PluginManager*,"const char*, uint32_t, const ElfApiInterface*"
|
||||||
@@ -2500,12 +2495,6 @@ Function,-,putchar_unlocked,int,int
|
|||||||
Function,-,putenv,int,char*
|
Function,-,putenv,int,char*
|
||||||
Function,-,puts,int,const char*
|
Function,-,puts,int,const char*
|
||||||
Function,-,putw,int,"int, FILE*"
|
Function,-,putw,int,"int, FILE*"
|
||||||
Function,-,pvPortCalloc,void*,"size_t, size_t"
|
|
||||||
Function,-,pvPortMalloc,void*,size_t
|
|
||||||
Function,-,pvTaskGetThreadLocalStoragePointer,void*,"TaskHandle_t, BaseType_t"
|
|
||||||
Function,-,pvTaskIncrementMutexHeldCount,TaskHandle_t,
|
|
||||||
Function,-,pvTimerGetTimerID,void*,const TimerHandle_t
|
|
||||||
Function,-,pxPortInitialiseStack,StackType_t*,"StackType_t*, TaskFunction_t, void*"
|
|
||||||
Function,-,qsort,void,"void*, size_t, size_t, __compar_fn_t"
|
Function,-,qsort,void,"void*, size_t, size_t, __compar_fn_t"
|
||||||
Function,-,qsort_r,void,"void*, size_t, size_t, int (*)(const void*, const void*, void*), void*"
|
Function,-,qsort_r,void,"void*, size_t, size_t, int (*)(const void*, const void*, void*), void*"
|
||||||
Function,-,quick_exit,void,int
|
Function,-,quick_exit,void,int
|
||||||
@@ -2885,6 +2874,7 @@ Function,-,subghz_keystore_raw_encrypted_save,_Bool,"const char*, const char*, u
|
|||||||
Function,-,subghz_keystore_raw_get_data,_Bool,"const char*, size_t, uint8_t*, size_t"
|
Function,-,subghz_keystore_raw_get_data,_Bool,"const char*, size_t, uint8_t*, size_t"
|
||||||
Function,-,subghz_keystore_reset_kl,void,SubGhzKeystore*
|
Function,-,subghz_keystore_reset_kl,void,SubGhzKeystore*
|
||||||
Function,-,subghz_keystore_save,_Bool,"SubGhzKeystore*, const char*, uint8_t*"
|
Function,-,subghz_keystore_save,_Bool,"SubGhzKeystore*, const char*, uint8_t*"
|
||||||
|
Function,+,subghz_protocol_alutech_at_4n_create_data,_Bool,"void*, FlipperFormat*, uint32_t, uint8_t, uint16_t, SubGhzRadioPreset*"
|
||||||
Function,+,subghz_protocol_blocks_add_bit,void,"SubGhzBlockDecoder*, uint8_t"
|
Function,+,subghz_protocol_blocks_add_bit,void,"SubGhzBlockDecoder*, uint8_t"
|
||||||
Function,+,subghz_protocol_blocks_add_bytes,uint8_t,"const uint8_t[], size_t"
|
Function,+,subghz_protocol_blocks_add_bytes,uint8_t,"const uint8_t[], size_t"
|
||||||
Function,+,subghz_protocol_blocks_add_to_128_bit,void,"SubGhzBlockDecoder*, uint8_t, uint64_t*"
|
Function,+,subghz_protocol_blocks_add_to_128_bit,void,"SubGhzBlockDecoder*, uint8_t, uint64_t*"
|
||||||
@@ -2906,6 +2896,7 @@ Function,+,subghz_protocol_blocks_parity_bytes,uint8_t,"const uint8_t[], size_t"
|
|||||||
Function,+,subghz_protocol_blocks_reverse_key,uint64_t,"uint64_t, uint8_t"
|
Function,+,subghz_protocol_blocks_reverse_key,uint64_t,"uint64_t, uint8_t"
|
||||||
Function,+,subghz_protocol_blocks_set_bit_array,void,"_Bool, uint8_t[], size_t, size_t"
|
Function,+,subghz_protocol_blocks_set_bit_array,void,"_Bool, uint8_t[], size_t, size_t"
|
||||||
Function,+,subghz_protocol_blocks_xor_bytes,uint8_t,"const uint8_t[], size_t"
|
Function,+,subghz_protocol_blocks_xor_bytes,uint8_t,"const uint8_t[], size_t"
|
||||||
|
Function,+,subghz_protocol_came_atomo_create_data,_Bool,"void*, FlipperFormat*, uint32_t, uint16_t, SubGhzRadioPreset*"
|
||||||
Function,+,subghz_protocol_decoder_base_deserialize,SubGhzProtocolStatus,"SubGhzProtocolDecoderBase*, FlipperFormat*"
|
Function,+,subghz_protocol_decoder_base_deserialize,SubGhzProtocolStatus,"SubGhzProtocolDecoderBase*, FlipperFormat*"
|
||||||
Function,+,subghz_protocol_decoder_base_get_hash_data,uint8_t,SubGhzProtocolDecoderBase*
|
Function,+,subghz_protocol_decoder_base_get_hash_data,uint8_t,SubGhzProtocolDecoderBase*
|
||||||
Function,+,subghz_protocol_decoder_base_get_string,_Bool,"SubGhzProtocolDecoderBase*, FuriString*"
|
Function,+,subghz_protocol_decoder_base_get_string,_Bool,"SubGhzProtocolDecoderBase*, FuriString*"
|
||||||
@@ -2923,7 +2914,10 @@ Function,+,subghz_protocol_encoder_raw_deserialize,SubGhzProtocolStatus,"void*,
|
|||||||
Function,+,subghz_protocol_encoder_raw_free,void,void*
|
Function,+,subghz_protocol_encoder_raw_free,void,void*
|
||||||
Function,+,subghz_protocol_encoder_raw_stop,void,void*
|
Function,+,subghz_protocol_encoder_raw_stop,void,void*
|
||||||
Function,+,subghz_protocol_encoder_raw_yield,LevelDuration,void*
|
Function,+,subghz_protocol_encoder_raw_yield,LevelDuration,void*
|
||||||
|
Function,+,subghz_protocol_faac_slh_create_data,_Bool,"void*, FlipperFormat*, uint32_t, uint8_t, uint32_t, uint32_t, const char*, SubGhzRadioPreset*"
|
||||||
|
Function,+,subghz_protocol_keeloq_bft_create_data,_Bool,"void*, FlipperFormat*, uint32_t, uint8_t, uint16_t, uint32_t, const char*, SubGhzRadioPreset*"
|
||||||
Function,+,subghz_protocol_keeloq_create_data,_Bool,"void*, FlipperFormat*, uint32_t, uint8_t, uint16_t, const char*, SubGhzRadioPreset*"
|
Function,+,subghz_protocol_keeloq_create_data,_Bool,"void*, FlipperFormat*, uint32_t, uint8_t, uint16_t, const char*, SubGhzRadioPreset*"
|
||||||
|
Function,+,subghz_protocol_nice_flor_s_create_data,_Bool,"void*, FlipperFormat*, uint32_t, uint8_t, uint16_t, SubGhzRadioPreset*, _Bool"
|
||||||
Function,+,subghz_protocol_raw_file_encoder_worker_set_callback_end,void,"SubGhzProtocolEncoderRAW*, SubGhzProtocolEncoderRAWCallbackEnd, void*"
|
Function,+,subghz_protocol_raw_file_encoder_worker_set_callback_end,void,"SubGhzProtocolEncoderRAW*, SubGhzProtocolEncoderRAWCallbackEnd, void*"
|
||||||
Function,+,subghz_protocol_raw_gen_fff_data,void,"FlipperFormat*, const char*, const char*"
|
Function,+,subghz_protocol_raw_gen_fff_data,void,"FlipperFormat*, const char*, const char*"
|
||||||
Function,+,subghz_protocol_raw_get_sample_write,size_t,SubGhzProtocolDecoderRAW*
|
Function,+,subghz_protocol_raw_get_sample_write,size_t,SubGhzProtocolDecoderRAW*
|
||||||
@@ -2935,6 +2929,9 @@ Function,+,subghz_protocol_registry_get_by_index,const SubGhzProtocol*,"const Su
|
|||||||
Function,+,subghz_protocol_registry_get_by_name,const SubGhzProtocol*,"const SubGhzProtocolRegistry*, const char*"
|
Function,+,subghz_protocol_registry_get_by_name,const SubGhzProtocol*,"const SubGhzProtocolRegistry*, const char*"
|
||||||
Function,+,subghz_protocol_secplus_v1_check_fixed,_Bool,uint32_t
|
Function,+,subghz_protocol_secplus_v1_check_fixed,_Bool,uint32_t
|
||||||
Function,+,subghz_protocol_secplus_v2_create_data,_Bool,"void*, FlipperFormat*, uint32_t, uint8_t, uint32_t, SubGhzRadioPreset*"
|
Function,+,subghz_protocol_secplus_v2_create_data,_Bool,"void*, FlipperFormat*, uint32_t, uint8_t, uint32_t, SubGhzRadioPreset*"
|
||||||
|
Function,+,subghz_protocol_somfy_keytis_create_data,_Bool,"void*, FlipperFormat*, uint32_t, uint8_t, uint16_t, SubGhzRadioPreset*"
|
||||||
|
Function,+,subghz_protocol_somfy_telis_create_data,_Bool,"void*, FlipperFormat*, uint32_t, uint8_t, uint16_t, SubGhzRadioPreset*"
|
||||||
|
Function,+,subghz_protocol_star_line_create_data,_Bool,"void*, FlipperFormat*, uint32_t, uint8_t, uint16_t, const char*, SubGhzRadioPreset*"
|
||||||
Function,+,subghz_receiver_alloc_init,SubGhzReceiver*,SubGhzEnvironment*
|
Function,+,subghz_receiver_alloc_init,SubGhzReceiver*,SubGhzEnvironment*
|
||||||
Function,+,subghz_receiver_decode,void,"SubGhzReceiver*, _Bool, uint32_t"
|
Function,+,subghz_receiver_decode,void,"SubGhzReceiver*, _Bool, uint32_t"
|
||||||
Function,+,subghz_receiver_free,void,SubGhzReceiver*
|
Function,+,subghz_receiver_free,void,SubGhzReceiver*
|
||||||
@@ -3074,67 +3071,10 @@ Function,-,uECC_sign_deterministic,int,"const uint8_t*, const uint8_t*, unsigned
|
|||||||
Function,-,uECC_valid_public_key,int,"const uint8_t*, uECC_Curve"
|
Function,-,uECC_valid_public_key,int,"const uint8_t*, uECC_Curve"
|
||||||
Function,-,uECC_verify,int,"const uint8_t*, const uint8_t*, unsigned, const uint8_t*, uECC_Curve"
|
Function,-,uECC_verify,int,"const uint8_t*, const uint8_t*, unsigned, const uint8_t*, uECC_Curve"
|
||||||
Function,+,uint8_to_hex_chars,void,"const uint8_t*, uint8_t*, int"
|
Function,+,uint8_to_hex_chars,void,"const uint8_t*, uint8_t*, int"
|
||||||
Function,-,ulTaskGenericNotifyTake,uint32_t,"UBaseType_t, BaseType_t, TickType_t"
|
|
||||||
Function,-,ulTaskGenericNotifyValueClear,uint32_t,"TaskHandle_t, UBaseType_t, uint32_t"
|
|
||||||
Function,-,ulTaskGetIdleRunTimeCounter,uint32_t,
|
|
||||||
Function,-,ulTaskGetIdleRunTimePercent,uint32_t,
|
|
||||||
Function,-,ungetc,int,"int, FILE*"
|
Function,-,ungetc,int,"int, FILE*"
|
||||||
Function,-,unsetenv,int,const char*
|
Function,-,unsetenv,int,const char*
|
||||||
Function,-,usbd_poll,void,usbd_device*
|
Function,-,usbd_poll,void,usbd_device*
|
||||||
Function,-,utoa,char*,"unsigned, char*, int"
|
Function,-,utoa,char*,"unsigned, char*, int"
|
||||||
Function,-,uxListRemove,UBaseType_t,ListItem_t*
|
|
||||||
Function,-,uxTaskGetNumberOfTasks,UBaseType_t,
|
|
||||||
Function,-,uxTaskGetStackHighWaterMark,UBaseType_t,TaskHandle_t
|
|
||||||
Function,-,uxTaskGetStackHighWaterMark2,uint16_t,TaskHandle_t
|
|
||||||
Function,-,uxTaskGetSystemState,UBaseType_t,"TaskStatus_t*, const UBaseType_t, uint32_t*"
|
|
||||||
Function,-,uxTaskGetTaskNumber,UBaseType_t,TaskHandle_t
|
|
||||||
Function,-,uxTaskPriorityGet,UBaseType_t,const TaskHandle_t
|
|
||||||
Function,-,uxTaskPriorityGetFromISR,UBaseType_t,const TaskHandle_t
|
|
||||||
Function,-,uxTaskResetEventItemValue,TickType_t,
|
|
||||||
Function,-,uxTimerGetReloadMode,UBaseType_t,TimerHandle_t
|
|
||||||
Function,-,uxTimerGetTimerNumber,UBaseType_t,TimerHandle_t
|
|
||||||
Function,-,vApplicationGetIdleTaskMemory,void,"StaticTask_t**, StackType_t**, uint32_t*"
|
|
||||||
Function,-,vApplicationGetTimerTaskMemory,void,"StaticTask_t**, StackType_t**, uint32_t*"
|
|
||||||
Function,-,vListInitialise,void,List_t*
|
|
||||||
Function,-,vListInitialiseItem,void,ListItem_t*
|
|
||||||
Function,-,vListInsert,void,"List_t*, ListItem_t*"
|
|
||||||
Function,-,vListInsertEnd,void,"List_t*, ListItem_t*"
|
|
||||||
Function,-,vPortDefineHeapRegions,void,const HeapRegion_t*
|
|
||||||
Function,-,vPortEndScheduler,void,
|
|
||||||
Function,+,vPortEnterCritical,void,
|
|
||||||
Function,+,vPortExitCritical,void,
|
|
||||||
Function,-,vPortFree,void,void*
|
|
||||||
Function,-,vPortGetHeapStats,void,HeapStats_t*
|
|
||||||
Function,-,vPortInitialiseBlocks,void,
|
|
||||||
Function,-,vPortSuppressTicksAndSleep,void,TickType_t
|
|
||||||
Function,-,vTaskAllocateMPURegions,void,"TaskHandle_t, const MemoryRegion_t*"
|
|
||||||
Function,-,vTaskDelay,void,const TickType_t
|
|
||||||
Function,-,vTaskDelete,void,TaskHandle_t
|
|
||||||
Function,-,vTaskEndScheduler,void,
|
|
||||||
Function,-,vTaskGenericNotifyGiveFromISR,void,"TaskHandle_t, UBaseType_t, BaseType_t*"
|
|
||||||
Function,-,vTaskGetInfo,void,"TaskHandle_t, TaskStatus_t*, BaseType_t, eTaskState"
|
|
||||||
Function,-,vTaskGetRunTimeStats,void,char*
|
|
||||||
Function,-,vTaskInternalSetTimeOutState,void,TimeOut_t*
|
|
||||||
Function,-,vTaskList,void,char*
|
|
||||||
Function,-,vTaskMissedYield,void,
|
|
||||||
Function,-,vTaskPlaceOnEventList,void,"List_t*, const TickType_t"
|
|
||||||
Function,-,vTaskPlaceOnEventListRestricted,void,"List_t*, TickType_t, const BaseType_t"
|
|
||||||
Function,-,vTaskPlaceOnUnorderedEventList,void,"List_t*, const TickType_t, const TickType_t"
|
|
||||||
Function,-,vTaskPriorityDisinheritAfterTimeout,void,"const TaskHandle_t, UBaseType_t"
|
|
||||||
Function,+,vTaskPrioritySet,void,"TaskHandle_t, UBaseType_t"
|
|
||||||
Function,-,vTaskRemoveFromUnorderedEventList,void,"ListItem_t*, const TickType_t"
|
|
||||||
Function,-,vTaskResume,void,TaskHandle_t
|
|
||||||
Function,-,vTaskSetTaskNumber,void,"TaskHandle_t, const UBaseType_t"
|
|
||||||
Function,-,vTaskSetThreadLocalStoragePointer,void,"TaskHandle_t, BaseType_t, void*"
|
|
||||||
Function,-,vTaskSetTimeOutState,void,TimeOut_t*
|
|
||||||
Function,-,vTaskStartScheduler,void,
|
|
||||||
Function,-,vTaskStepTick,void,TickType_t
|
|
||||||
Function,-,vTaskSuspend,void,TaskHandle_t
|
|
||||||
Function,-,vTaskSuspendAll,void,
|
|
||||||
Function,-,vTaskSwitchContext,void,
|
|
||||||
Function,-,vTimerSetReloadMode,void,"TimerHandle_t, const BaseType_t"
|
|
||||||
Function,-,vTimerSetTimerID,void,"TimerHandle_t, void*"
|
|
||||||
Function,-,vTimerSetTimerNumber,void,"TimerHandle_t, UBaseType_t"
|
|
||||||
Function,+,validator_is_file_alloc_init,ValidatorIsFile*,"const char*, const char*, const char*"
|
Function,+,validator_is_file_alloc_init,ValidatorIsFile*,"const char*, const char*, const char*"
|
||||||
Function,+,validator_is_file_callback,_Bool,"const char*, FuriString*, void*"
|
Function,+,validator_is_file_callback,_Bool,"const char*, FuriString*, void*"
|
||||||
Function,+,validator_is_file_free,void,ValidatorIsFile*
|
Function,+,validator_is_file_free,void,ValidatorIsFile*
|
||||||
@@ -3252,43 +3192,6 @@ Function,+,widget_alloc,Widget*,
|
|||||||
Function,+,widget_free,void,Widget*
|
Function,+,widget_free,void,Widget*
|
||||||
Function,+,widget_get_view,View*,Widget*
|
Function,+,widget_get_view,View*,Widget*
|
||||||
Function,+,widget_reset,void,Widget*
|
Function,+,widget_reset,void,Widget*
|
||||||
Function,-,xPortGetFreeHeapSize,size_t,
|
|
||||||
Function,-,xPortGetMinimumEverFreeHeapSize,size_t,
|
|
||||||
Function,-,xPortStartScheduler,BaseType_t,
|
|
||||||
Function,-,xTaskAbortDelay,BaseType_t,TaskHandle_t
|
|
||||||
Function,-,xTaskCallApplicationTaskHook,BaseType_t,"TaskHandle_t, void*"
|
|
||||||
Function,-,xTaskCatchUpTicks,BaseType_t,TickType_t
|
|
||||||
Function,-,xTaskCheckForTimeOut,BaseType_t,"TimeOut_t*, TickType_t*"
|
|
||||||
Function,-,xTaskCreate,BaseType_t,"TaskFunction_t, const char*, const uint16_t, void*, UBaseType_t, TaskHandle_t*"
|
|
||||||
Function,-,xTaskCreateStatic,TaskHandle_t,"TaskFunction_t, const char*, const uint32_t, void*, UBaseType_t, StackType_t*, StaticTask_t*"
|
|
||||||
Function,-,xTaskDelayUntil,BaseType_t,"TickType_t*, const TickType_t"
|
|
||||||
Function,-,xTaskGenericNotify,BaseType_t,"TaskHandle_t, UBaseType_t, uint32_t, eNotifyAction, uint32_t*"
|
|
||||||
Function,-,xTaskGenericNotifyFromISR,BaseType_t,"TaskHandle_t, UBaseType_t, uint32_t, eNotifyAction, uint32_t*, BaseType_t*"
|
|
||||||
Function,-,xTaskGenericNotifyStateClear,BaseType_t,"TaskHandle_t, UBaseType_t"
|
|
||||||
Function,-,xTaskGenericNotifyWait,BaseType_t,"UBaseType_t, uint32_t, uint32_t, uint32_t*, TickType_t"
|
|
||||||
Function,-,xTaskGetCurrentTaskHandle,TaskHandle_t,
|
|
||||||
Function,+,xTaskGetHandle,TaskHandle_t,const char*
|
|
||||||
Function,-,xTaskGetIdleTaskHandle,TaskHandle_t,
|
|
||||||
Function,+,xTaskGetSchedulerState,BaseType_t,
|
|
||||||
Function,+,xTaskGetTickCount,TickType_t,
|
|
||||||
Function,-,xTaskGetTickCountFromISR,TickType_t,
|
|
||||||
Function,-,xTaskIncrementTick,BaseType_t,
|
|
||||||
Function,-,xTaskPriorityDisinherit,BaseType_t,const TaskHandle_t
|
|
||||||
Function,-,xTaskPriorityInherit,BaseType_t,const TaskHandle_t
|
|
||||||
Function,-,xTaskRemoveFromEventList,BaseType_t,const List_t*
|
|
||||||
Function,-,xTaskResumeAll,BaseType_t,
|
|
||||||
Function,-,xTaskResumeFromISR,BaseType_t,TaskHandle_t
|
|
||||||
Function,-,xTimerCreate,TimerHandle_t,"const char*, const TickType_t, const BaseType_t, void*, TimerCallbackFunction_t"
|
|
||||||
Function,-,xTimerCreateStatic,TimerHandle_t,"const char*, const TickType_t, const BaseType_t, void*, TimerCallbackFunction_t, StaticTimer_t*"
|
|
||||||
Function,-,xTimerCreateTimerTask,BaseType_t,
|
|
||||||
Function,-,xTimerGenericCommand,BaseType_t,"TimerHandle_t, const BaseType_t, const TickType_t, BaseType_t*, const TickType_t"
|
|
||||||
Function,-,xTimerGetExpiryTime,TickType_t,TimerHandle_t
|
|
||||||
Function,-,xTimerGetPeriod,TickType_t,TimerHandle_t
|
|
||||||
Function,-,xTimerGetReloadMode,BaseType_t,TimerHandle_t
|
|
||||||
Function,-,xTimerGetTimerDaemonTaskHandle,TaskHandle_t,
|
|
||||||
Function,-,xTimerIsTimerActive,BaseType_t,TimerHandle_t
|
|
||||||
Function,-,xTimerPendFunctionCall,BaseType_t,"PendedFunction_t, void*, uint32_t, TickType_t"
|
|
||||||
Function,-,xTimerPendFunctionCallFromISR,BaseType_t,"PendedFunction_t, void*, uint32_t, BaseType_t*"
|
|
||||||
Function,-,y0,double,double
|
Function,-,y0,double,double
|
||||||
Function,-,y0f,float,float
|
Function,-,y0f,float,float
|
||||||
Function,-,y1,double,double
|
Function,-,y1,double,double
|
||||||
|
|||||||
|
Reference in New Issue
Block a user