mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
tests/periph/gpio_ll: Use better default pin config
The default pin config is only a place holder anyway. But if it is invalid at least on AVR most of the firmware is considered unreachable. This updates the default GPIO config to something that should look plausible to the compiler for all MCUs supporting GPIO LL, so that ROM and RAM size in the CI start making sense.
This commit is contained in:
parent
2ee949e676
commit
84800fdb5d
@ -10,11 +10,11 @@ BOARD ?= nucleo-f767zi
|
||||
# first output pin and the second input pin to the second output pin, e.g. using
|
||||
# jumper wires.
|
||||
PORT_IN ?= 1
|
||||
PORT_OUT ?= 0
|
||||
PORT_OUT ?= 1
|
||||
PIN_IN_0 ?= 0
|
||||
PIN_IN_1 ?= 1
|
||||
PIN_OUT_0 ?= 0
|
||||
PIN_OUT_1 ?= 1
|
||||
PIN_OUT_0 ?= 2
|
||||
PIN_OUT_1 ?= 3
|
||||
|
||||
# Boards that require tweaking for low ROM
|
||||
LOW_ROM_BOARDS := \
|
||||
|
Loading…
Reference in New Issue
Block a user