Compare commits

..

No commits in common. "7a737235ffd49c32d2c5561e8fe53fd96baa7f96" and "90d1b32f07567d658a03d05c7061da1381477fe3" have entirely different histories.

4 changed files with 5 additions and 4 deletions

View File

@ -35,7 +35,7 @@ jobs:
- name: Get changed files - name: Get changed files
id: file_changes id: file_changes
uses: tj-actions/changed-files@v38 uses: tj-actions/changed-files@v37
- name: Run qmk formatters - name: Run qmk formatters
shell: 'bash {0}' shell: 'bash {0}'

View File

@ -27,7 +27,7 @@ jobs:
- name: Get changed files - name: Get changed files
id: file_changes id: file_changes
uses: tj-actions/changed-files@v38 uses: tj-actions/changed-files@v37
- name: Print info - name: Print info
run: | run: |

View File

@ -131,7 +131,7 @@ uint8_t matrix_scan(void)
case 0x00: case 0x00:
break; break;
case 0xF0: case 0xF0:
state = F0_BREAK; state = F0;
debug(" "); debug(" ");
break; break;
default: // normal key make default: // normal key make

View File

@ -12,7 +12,8 @@ HEX = $(OBJCOPY) -O $(FORMAT) -R .eeprom -R .fuse -R .lock -R .signature
EEP = $(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 --no-change-warnings -O $(FORMAT) EEP = $(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 --no-change-warnings -O $(FORMAT)
BIN = BIN =
ifeq ("$(shell echo "int main(){}" | $(CC) --param=min-pagesize=0 -x c - -o /dev/null 2>&1)", "") # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523
ifneq ($(findstring 12.,$(shell avr-gcc --version 2>/dev/null)),)
COMPILEFLAGS += --param=min-pagesize=0 COMPILEFLAGS += --param=min-pagesize=0
endif endif