aboutsummaryrefslogtreecommitdiff
path: root/spaghetti-monster
diff options
context:
space:
mode:
authorSelene ToyKeeper2019-11-19 00:36:50 -0700
committerSelene ToyKeeper2019-11-19 00:36:50 -0700
commit134c6de1eea4aee9a609a3057091d21109a833d5 (patch)
tree67775696bb8b8f48256de396db835efda15fd6a2 /spaghetti-monster
parentthe Q8 can just barely fit muggle mode again (diff)
downloadanduril-134c6de1eea4aee9a609a3057091d21109a833d5.tar.gz
anduril-134c6de1eea4aee9a609a3057091d21109a833d5.tar.bz2
anduril-134c6de1eea4aee9a609a3057091d21109a833d5.zip
reduced build size by a few bytes
Diffstat (limited to '')
-rw-r--r--spaghetti-monster/fsm-adc.c2
-rw-r--r--spaghetti-monster/fsm-main.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/spaghetti-monster/fsm-adc.c b/spaghetti-monster/fsm-adc.c
index ccf1ca2..4ee2018 100644
--- a/spaghetti-monster/fsm-adc.c
+++ b/spaghetti-monster/fsm-adc.c
@@ -21,7 +21,7 @@
#define FSM_ADC_C
-inline void set_admux_therm() {
+static inline void set_admux_therm() {
#if (ATTINY == 25) || (ATTINY == 45) || (ATTINY == 85) || (ATTINY == 1634)
ADMUX = ADMUX_THERM;
#elif (ATTINY == 841)
diff --git a/spaghetti-monster/fsm-main.c b/spaghetti-monster/fsm-main.c
index d352a36..4ad1e16 100644
--- a/spaghetti-monster/fsm-main.c
+++ b/spaghetti-monster/fsm-main.c
@@ -37,7 +37,7 @@ ISR(TIMER1_COMPA_vect) {
#endif
#if (ATTINY == 25) || (ATTINY == 45) || (ATTINY == 85)
-inline void hw_setup() {
+static inline void hw_setup() {
// configure PWM channels
#if PWM_CHANNELS >= 1
DDRB |= (1 << PWM1_PIN);
@@ -69,7 +69,7 @@ inline void hw_setup() {
PCMSK = (1 << SWITCH_PIN); // pin change interrupt uses this pin
}
#elif (ATTINY == 1634)
-inline void hw_setup() {
+static inline void hw_setup() {
// this gets tricky with so many pins...
// ... so punt it to the hwdef file
hwdef_setup();