diff options
-rw-r--r-- | quantum/audio/voices.c | 1 | ||||
-rw-r--r-- | quantum/process_keycode/process_unicode_common.h | 1 | ||||
-rw-r--r-- | util/travis_compiled_push.sh | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/quantum/audio/voices.c b/quantum/audio/voices.c index 8326e91ea..c2edb75f0 100644 --- a/quantum/audio/voices.c +++ b/quantum/audio/voices.c | |||
@@ -24,6 +24,7 @@ void voice_deiterate() { | |||
24 | 24 | ||
25 | float voice_envelope(float frequency) { | 25 | float voice_envelope(float frequency) { |
26 | // envelope_index ranges from 0 to 0xFFFF, which is preserved at 880.0 Hz | 26 | // envelope_index ranges from 0 to 0xFFFF, which is preserved at 880.0 Hz |
27 | __attribute__ ((unused)) | ||
27 | uint16_t compensated_index = (uint16_t)((float)envelope_index * (880.0 / frequency)); | 28 | uint16_t compensated_index = (uint16_t)((float)envelope_index * (880.0 / frequency)); |
28 | 29 | ||
29 | switch (voice) { | 30 | switch (voice) { |
diff --git a/quantum/process_keycode/process_unicode_common.h b/quantum/process_keycode/process_unicode_common.h index 1f25eae7d..864693cdd 100644 --- a/quantum/process_keycode/process_unicode_common.h +++ b/quantum/process_keycode/process_unicode_common.h | |||
@@ -7,6 +7,7 @@ | |||
7 | #define UNICODE_TYPE_DELAY 10 | 7 | #define UNICODE_TYPE_DELAY 10 |
8 | #endif | 8 | #endif |
9 | 9 | ||
10 | __attribute__ ((unused)) | ||
10 | static uint8_t input_mode; | 11 | static uint8_t input_mode; |
11 | 12 | ||
12 | void set_unicode_input_mode(uint8_t os_target); | 13 | void set_unicode_input_mode(uint8_t os_target); |
diff --git a/util/travis_compiled_push.sh b/util/travis_compiled_push.sh index 582c45ff7..58334cb1f 100644 --- a/util/travis_compiled_push.sh +++ b/util/travis_compiled_push.sh | |||
@@ -7,7 +7,7 @@ rev=$(git rev-parse --short HEAD) | |||
7 | git config --global user.name "Travis CI" | 7 | git config --global user.name "Travis CI" |
8 | git config --global user.email "jack.humb+travis.ci@gmail.com" | 8 | git config --global user.email "jack.humb+travis.ci@gmail.com" |
9 | 9 | ||
10 | if [[ "$TRAVIS_BRANCH" == "master" ]] && [[ "$TRAVIS_PULL_REQUEST" == "false"]] ; then | 10 | if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]] ; then |
11 | 11 | ||
12 | increment_version () | 12 | increment_version () |
13 | { | 13 | { |