Cleanup some clutter --nobuild

This commit is contained in:
Willy-JL
2023-08-29 00:26:59 +02:00
parent 7e56034538
commit 184eb718e1
8 changed files with 4 additions and 17 deletions

View File

@@ -1,12 +1,11 @@
App(
appid="uart_echo",
name="[GPIO] UART Echo",
name="UART Echo",
apptype=FlipperAppType.DEBUG,
entry_point="uart_echo_app",
cdefines=["APP_UART_ECHO"],
requires=["gui"],
stack_size=2 * 1024,
order=70,
fap_icon="uart_10px.png",
fap_category="Debug",
)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -524,7 +524,7 @@ static void byte_input_handle_down(ByteInputModel* model) {
*
* @param model The model
*/
static void byte_input_handle_left(ByteInputModel* model) { // XXX
static void byte_input_handle_left(ByteInputModel* model) {
if(byte_input_keyboard_selected(model)) {
if(model->selected_column > 0) {
model->selected_column -= 1;
@@ -544,7 +544,7 @@ static void byte_input_handle_left(ByteInputModel* model) { // XXX
*
* @param model The model
*/
static void byte_input_handle_right(ByteInputModel* model) { // XXX
static void byte_input_handle_right(ByteInputModel* model) {
if(byte_input_keyboard_selected(model)) {
if(model->selected_column < byte_input_get_row_size(model->selected_row) - 1) {
model->selected_column += 1;

View File

@@ -69,8 +69,6 @@ static bool update_task_resource_unpack_cb(const char* name, bool is_directory,
static void update_task_cleanup_resources(UpdateTask* update_task, const uint32_t n_tar_entries) {
ResourceManifestReader* manifest_reader = resource_manifest_reader_alloc(update_task->storage);
do {
// storage_simply_remove_recursive(update_task->storage, EXT_PATH("apps"));
FURI_LOG_D(TAG, "Cleaning up old manifest");
if(!resource_manifest_reader_open(manifest_reader, EXT_PATH("Manifest"))) {
FURI_LOG_W(TAG, "No existing manifest");