Formatting all header files (*.h) in accordance with project coding style, using the astyle tool and the rules file _astylerc-h.

This commit is contained in:
Alexander
2018-06-18 13:52:14 +03:00
parent 8e9335d49f
commit 5ff4125c56
49 changed files with 271 additions and 269 deletions

View File

@@ -40,7 +40,7 @@ typedef enum
LV_TASK_PRIO_HIGH,
LV_TASK_PRIO_HIGHEST,
LV_TASK_PRIO_NUM,
}lv_task_prio_t;
} lv_task_prio_t;
/**
* Descriptor of a lv_task
@@ -53,7 +53,7 @@ typedef struct
void * param;
uint8_t prio:3;
uint8_t once:1;
}lv_task_t;
} lv_task_t;
/**********************
* GLOBAL PROTOTYPES
@@ -139,4 +139,4 @@ uint8_t lv_task_get_idle(void);
} /* extern "C" */
#endif
#endif
#endif