mirror of
https://github.com/meshtastic/firmware.git
synced 2025-05-01 19:46:42 +00:00

using @girtsf clang-format prefs settings. This should allow us to turn on auto format in our editors without causing spurious file changes.
13 lines
258 B
C
13 lines
258 B
C
#pragma once
|
|
|
|
// low level types
|
|
|
|
#include <Arduino.h>
|
|
|
|
typedef uint8_t NodeNum;
|
|
|
|
#define NODENUM_BROADCAST 255
|
|
#define ERRNO_OK 0
|
|
#define ERRNO_UNKNOWN 32 // pick something that doesn't conflict with RH_ROUTER_ERROR_UNABLE_TO_DELIVER
|
|
|
|
typedef int ErrorCode; |