10 lines
314 B
C
10 lines
314 B
C
// Copyright 2024 Markus Knutsson (@TweetyDaBird)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#define SERIAL_PIO_USE_PIO1 // Force the usage of PIO1 peripheral, by default the Serial implementation uses the PIO0 peripheral
|
|
|
|
#define I2C_DRIVER I2CD1
|
|
#define I2C1_SDA_PIN GP2
|
|
#define I2C1_SCL_PIN GP3
|