allow override of XOSC_MHZ (#644)

* And increased assertion limit to 50 as 15 was the limit for the oscillator but not for XIN
This commit is contained in:
Graham Sanderson
2021-11-01 08:11:21 -05:00
committed by GitHub
parent d7358e4ed8
commit da476610e2
2 changed files with 5 additions and 2 deletions

View File

@ -36,7 +36,10 @@
#define PIO_INSTRUCTION_COUNT _u(32)
// PICO_CONFIG: XOSC_MHZ, The crystal oscillator frequency in Mhz, type=int, default=12, advanced=true, group=hardware_base
#ifndef XOSC_MHZ
#define XOSC_MHZ _u(12)
#endif
#endif