Fix SDK to build cleanly if PICO_DEFAULT_UART isn't defined (#223)
diff --git a/lib/tinyusb b/lib/tinyusb
index e0aa405..11c23f8 160000
--- a/lib/tinyusb
+++ b/lib/tinyusb
@@ -1 +1 @@
-Subproject commit e0aa405d19e35dbf58cf502b8106455c1a3c2a5c
+Subproject commit 11c23f88bf42f64ce14b8a7b0b2a4e207dc4dd12
diff --git a/test/pico_divider_test/pico_divider_test.c b/test/pico_divider_test/pico_divider_test.c
index 06a5d02..fc0e9ef 100644
--- a/test/pico_divider_test/pico_divider_test.c
+++ b/test/pico_divider_test/pico_divider_test.c
@@ -30,11 +30,12 @@
// o8hex(hwdiv_data[1]); osp();
// o8hex(hwdiv_data[2]); osp();
// o8hex(hwdiv_data[3]); onl();
- }
+}
ui64 ntests=0;
+#ifdef uart_default
void o1ch(int c) {
uart_putc(uart_default, c);
}
@@ -73,6 +74,7 @@
zf=odig(&v,10,zf);
zf=odig(&v,1,0);
}
+#endif
int xdigval(int c) {
@@ -80,7 +82,7 @@
if(c>='A'&&c<='F') return c-'A'+10;
if(c>='a'&&c<='f') return c-'a'+10;
return -1;
- }
+}
ui64 seed;
@@ -92,11 +94,13 @@
unsigned int rnd32() {
return rnd64();
- }
+}
//#define RANDOMISE
//#define rfn "/dev/random"
+
+#ifdef uart_default
void test_divu64u64(ui64 y,ui64 x) {
ui64 q,r;
test_mulib_divu64u64(&y,&x,&q,&r);
@@ -115,7 +119,7 @@
o16hex(y%x); onl();
}
ntests++;
- }
+}
void test_divs64s64(i64 y,i64 x) {
i64 q,r;
@@ -138,7 +142,7 @@
o16hex(y%x); onl();
}
ntests++;
- }
+}
// for all x and y consisting of a single run of 1:s, test a region around (x,y)
@@ -185,7 +189,8 @@
}
odec(i+1); ostr("M\n");
}
- }
+}
+#endif
uint32_t __attribute__((naked)) time_32(uint32_t a, uint32_t b, uint32_t (*func)(uint32_t a, uint32_t b)) {
asm(
@@ -323,6 +328,9 @@
}
int main() {
+#ifndef uart_default
+#warning test/pico_divider requires a default uart
+#else
#ifdef TURBO
vreg_set_voltage(VREG_VOLTAGE_MAX);
set_sys_clock_khz(48000*8, true);
@@ -372,5 +380,6 @@
ostr("END\n");
return 0;
- }
+#endif
+}