diff options
| author | Selene ToyKeeper | 2017-08-26 13:53:33 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2017-08-26 13:53:33 -0600 |
| commit | fa851a676c73e53a48114cec7fe800a9dbd2fcd9 (patch) | |
| tree | 6d43f2424f3b52ac84ac6862c5bf3e3bf8c4ce71 /tk-attiny.h | |
| parent | Avoid suspending at weird times by deferring the call to standby mode. (diff) | |
| download | anduril-fa851a676c73e53a48114cec7fe800a9dbd2fcd9.tar.gz anduril-fa851a676c73e53a48114cec7fe800a9dbd2fcd9.tar.bz2 anduril-fa851a676c73e53a48114cec7fe800a9dbd2fcd9.zip | |
Replaced bare config errors with the preprocessor's intended method of throwing config errors.
Diffstat (limited to '')
| -rw-r--r-- | tk-attiny.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tk-attiny.h b/tk-attiny.h index 9779eb0..2cfe4fd 100644 --- a/tk-attiny.h +++ b/tk-attiny.h @@ -51,7 +51,7 @@ // (1 << V_REF) | (0 << ADLAR) | (THERM_CHANNEL) #define ADMUX_THERM 0b10001111 #else - Hey, you need to define ATTINY. + #error Hey, you need to define ATTINY. #endif @@ -237,7 +237,7 @@ #ifndef LAYOUT_DEFINED - Hey, you need to define an I/O pin layout. +#error Hey, you need to define an I/O pin layout. #endif #endif // TK_ATTINY_H |
