Skip to content
Snippets Groups Projects
Commit ab3b68cf authored by Beat Küng's avatar Beat Küng Committed by Lorenz Meier
Browse files

ORB_PRIO: set ORB_PRIO_MIN to 1 instead of 0

This is needed as the sensors app assumes a value of 0 means uninitialized.

Follow-up to 'Sensors app: Fix consistency checks', a6696d33
parent 000d965a
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ typedef const struct orb_metadata *orb_id_t;
* Relevant for multi-topics / topic groups
*/
enum ORB_PRIO {
ORB_PRIO_MIN = 0,
ORB_PRIO_MIN = 1, // leave 0 free for other purposes, eg. marking an uninitialized value
ORB_PRIO_VERY_LOW = 25,
ORB_PRIO_LOW = 50,
ORB_PRIO_DEFAULT = 75,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment