389ff92cc1
* Makefile, Scripts: new linter * About: remove ID from IC * Firmware: remove double define for DIVC/DIVR * Scripts: check folder names too. Docker: replace syntax check with make lint. * Reformat Sources and Migrate to new file naming convention * Docker: symlink clang-format-12 to clang-format * Add coding style guide
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
#include "dialogs_i.h"
|
|
#include "dialogs_api_lock.h"
|
|
#include "dialogs_module_file_select.h"
|
|
#include "dialogs_module_message.h"
|
|
|
|
static DialogsApp* dialogs_app_alloc() {
|
|
DialogsApp* app = malloc(sizeof(DialogsApp));
|
|
app->message_queue = osMessageQueueNew(8, sizeof(DialogsAppMessage), NULL);
|
|
|
|
return app;
|
|
}
|
|
|
|
static void dialogs_app_process_message(DialogsApp* app, DialogsAppMessage* message) {
|
|
switch(message->command) {
|
|
case DialogsAppCommandFileOpen:
|
|
message->return_data->bool_value =
|
|
dialogs_app_process_module_file_select(&message->data->file_select);
|
|
break;
|
|
case DialogsAppCommandDialog:
|
|
message->return_data->dialog_value =
|
|
dialogs_app_process_module_message(&message->data->dialog);
|
|
break;
|
|
}
|
|
API_LOCK_UNLOCK(message->lock);
|
|
}
|
|
|
|
int32_t dialogs_srv(void* p) {
|
|
DialogsApp* app = dialogs_app_alloc();
|
|
furi_record_create("dialogs", app);
|
|
|
|
DialogsAppMessage message;
|
|
while(1) {
|
|
if(osMessageQueueGet(app->message_queue, &message, NULL, osWaitForever) == osOK) {
|
|
dialogs_app_process_message(app, &message);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
} |