Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- TCA9534: Added I2C GPIO expander driver (`src/dev/tca9534.h`) with shared-bus and owned-bus init, plus `TCA9534_GPIO` example.

### Bug Fixes

- Linker scripts: removed a malformed `DISCARD` section that loaded full newlib's `libc.a` into every link. CMake builds now link newlib-nano only; the Makefile build is byte-identical.

## v8.1.0

### Features
Expand Down
7 changes: 0 additions & 7 deletions core/STM32H750IB_flash.lds
Original file line number Diff line number Diff line change
Expand Up @@ -257,12 +257,5 @@ SECTIONS
PROVIDE(__reserved_for_stack_end__ = .);
} > SRAM

DISCARD :
{
libc.a ( * )
libm.a ( * )
libgcc.a ( * )
}

}

7 changes: 0 additions & 7 deletions core/STM32H750IB_qspi.lds
Original file line number Diff line number Diff line change
Expand Up @@ -260,11 +260,4 @@ SECTIONS
PROVIDE(__reserved_for_stack_end__ = .);
} > DTCMRAM

DISCARD :
{
libc.a ( * )
libm.a ( * )
libgcc.a ( * )
}

}
7 changes: 0 additions & 7 deletions core/STM32H750IB_sram.lds
Original file line number Diff line number Diff line change
Expand Up @@ -258,11 +258,4 @@ SECTIONS
PROVIDE(__reserved_for_stack_end__ = .);
} > DTCMRAM

DISCARD :
{
libc.a ( * )
libm.a ( * )
libgcc.a ( * )
}

}
Loading