diff options
| author | Matthijs Kooijman <matthijs@stdin.nl> | 2014-06-25 15:58:38 +0200 | 
|---|---|---|
| committer | Matthijs Kooijman <matthijs@stdin.nl> | 2014-06-25 16:56:19 +0200 | 
| commit | 4fdf87c0e8a801093d5f0513e4aab122e20bfc2e (patch) | |
| tree | 39a44e929617cd3c8f58c843889dcb145213b553 /cores/arduino/Arduino.h | |
| parent | 3a48c9240d33a32f7afdcb06ac345fa24d4aa46b (diff) | |
Allow variants to define an initVariant() function that is called at startup.
See #2080 and #2139.
Diffstat (limited to 'cores/arduino/Arduino.h')
| -rw-r--r-- | cores/arduino/Arduino.h | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/cores/arduino/Arduino.h b/cores/arduino/Arduino.h index 6b923a4..630f0d6 100644 --- a/cores/arduino/Arduino.h +++ b/cores/arduino/Arduino.h @@ -118,6 +118,7 @@ typedef uint8_t boolean;  typedef uint8_t byte;  void init(void); +void initVariant(void);  void pinMode(uint8_t, uint8_t);  void digitalWrite(uint8_t, uint8_t); | 
