Files
lk/target/pico/target.c
Travis Geiselbrecht c8e4a56f00 [target][pico] switch the uart config to target driven
Uses the target/debugconfig.h file pattern laid down before,
which is a bit long in the tooth but for the moment still helps
us separate target from platform.
2021-02-15 21:06:05 -08:00

20 lines
389 B
C

// Copyright (c) 2020 Brian Swetland
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#include <target.h>
#include <target/debugconfig.h>
#include <platform/gpio.h>
void target_early_init(void) {
}
void target_set_debug_led(unsigned int led, bool on) {
}
void target_init(void) {
}