summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Cross <[email protected]>2019-11-13 11:08:56 -0800
committerSean Cross <[email protected]>2019-11-13 11:08:56 -0800
commit67267a93997770a2f59d606b5eb2f2d96b3a1437 (patch)
tree9991a08e00d98be5e39326d291c25c9f6b32ae1d
parentdce070ebe0ab95a8a87f5be2a0696ec58a749ab0 (diff)
fomu: bsp: remove unused messible functions
These functions are unused in the current implementation. Signed-off-by: Sean Cross <[email protected]>
-rw-r--r--hw/bsp/fomu/fomu.c (renamed from hw/bsp/fomu/bsp.c)17
1 files changed, 0 insertions, 17 deletions
diff --git a/hw/bsp/fomu/bsp.c b/hw/bsp/fomu/fomu.c
index 3910cff44..3303a0826 100644
--- a/hw/bsp/fomu/bsp.c
+++ b/hw/bsp/fomu/fomu.c
@@ -36,26 +36,10 @@
void hal_dcd_isr(uint8_t rhport);
-void mputs(const char *str) {
- (void)str;
- while (*str) {
- while ( (messible_status_read() & CSR_MESSIBLE_STATUS_FULL_OFFSET))
- ;
- messible_in_write(*str);
- str++;
- }
-}
-
-void mputln(const char *str) {
- mputs(str);
- mputs("\n");
-}
-
void fomu_error(uint32_t line)
{
(void)line;
TU_BREAKPOINT();
- // while (1) {}
}
volatile uint32_t system_ticks = 0;
@@ -90,7 +74,6 @@ void isr(void)
void board_init(void)
{
- mputln("Fomu Initializing");
irq_setmask(0);
irq_setie(1);
timer_init();