- just a skeleton to get us started - cpu feature config and irq names / vectab2 setup done - pulled in the second stage for pico as a blob for now - seems to be hard faulting out of systick setup in platform_init()
20 lines
358 B
C
20 lines
358 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 <platform/gpio.h>
|
|
|
|
|
|
void target_early_init(void) {
|
|
}
|
|
|
|
void target_set_debug_led(unsigned int led, bool on) {
|
|
}
|
|
|
|
void target_init(void) {
|
|
}
|
|
|