Files
Mu/hwTestSuite/tools.h
meepingsnesroms 0b169e56ab Add tool to create a touchscreen lookup table
The 20 pixel at a time y limit is because Palm OS seems to not allow allocating >64k at a time.

Also removed unsafe mode, whenever a test needs to do something unsafe it can just call turnOffInterrupts()
2018-07-24 17:06:44 -07:00

19 lines
396 B
C

#ifndef TOOLS_HEADER
#define TOOLS_HEADER
#include <PalmOS.h>
#include "testSuite.h"
Err makeFile(uint8_t* data, uint32_t size, char* fileName);
uint16_t ads7846GetValue(uint8_t channel, Boolean referenceMode, Boolean mode8Bit);
var hexRamBrowser();
var getTrapAddress();
var manualLssa();
var dumpBootloaderToFile();
var listRomInfo();
var listChipSelects();
var getTouchscreenLut();
#endif