Disabled self tests for OMV1

* RGB QVGA doesn't fit in OMV1's RAM, fix the script or write another one.
This commit is contained in:
iabdalkader 2015-08-18 23:54:26 +02:00
parent d7130234d3
commit 940f3a0d7d

View File

@ -96,6 +96,9 @@ static const char fresh_readme_txt[] =
"Please visit http://micropython.org/help/ for further help.\r\n"
;
#ifdef OPENMV1
static const char fresh_selftest_py[] ="";
#else
static const char fresh_selftest_py[] =
"import sensor, time, pyb\n"
"\n"
@ -164,6 +167,8 @@ static const char fresh_selftest_py[] =
"test_int_adc()\n"
"test_color_bars()\n"
;
#endif
void flash_error(int n) {
for (int i = 0; i < n; i++) {
led_state(LED_RED, 0);