mirror of
https://github.com/google/pebble.git
synced 2025-05-05 17:31:40 -04:00
11 lines
248 B
C
11 lines
248 B
C
// Run Level definitions
|
|
//
|
|
// To add a new runlevel definition, add a new line with RUNLEVEL(number, name).
|
|
|
|
RUNLEVEL(0, BareMinimum)
|
|
RUNLEVEL(1, LowPower)
|
|
RUNLEVEL(2, Stationary)
|
|
RUNLEVEL(3, FirmwareUpdate)
|
|
RUNLEVEL(4, Normal)
|
|
|
|
// vim:filetype=c
|