| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| |
|
| | #include "hardware.h"
|
| | #include "runtime.h"
|
| |
|
| |
|
| | #define CBUFSIZE 4
|
| | char* cbuffer[CBUFSIZE];
|
| |
|
| |
|
| | #ifndef MSDOS
|
| | void __attribute__((weak)) bloop() {}
|
| | #else
|
| | void bloop() {}
|
| | #endif
|
| |
|
| |
|
| | |
| | |
| |
|
| |
|
| | int8_t id;
|
| | int8_t od;
|
| | int8_t idd = ISERIAL;
|
| | int8_t odd = OSERIAL;
|
| | int8_t ioer = 0;
|
| |
|
| |
|
| | #ifdef HASMSTAB
|
| | uint8_t charcount[3];
|
| | #endif
|
| |
|
| |
|
| | char* nullbuffer = ibuffer;
|
| | uint16_t nullbufsize = BUFSIZE;
|
| |
|
| |
|
| | #if defined(MSDOS)
|
| | uint8_t bsystype = SYSTYPE_MSDOS;
|
| | #elif defined(RASPPI)
|
| | uint8_t bsystype = SYSTYPE_PASPPI;
|
| | #elif defined(MINGW)
|
| | uint8_t bsystype = SYSTYPE_MINGW;
|
| | #elif defined(POSIX)
|
| | uint8_t bsystype = SYSTYPE_POSIX;
|
| | #else
|
| | uint8_t bsystype = SYSTYPE_UNKNOWN;
|
| | #endif
|
| |
|
| |
|
| |
|
| |
|
| | #ifdef POSIXWIRING
|
| | #include <wiringPi.h>
|
| | #endif
|
| |
|
| | #ifdef POSIXPIGPIO
|
| | #include <pigpiod_if2.h>
|
| | #undef POSIXWIRING
|
| | int pigpio_pi = 0;
|
| | #endif
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | |
| | |
| |
|
| | const uint16_t serial_baudrate = 0;
|
| | const uint16_t serial1_baudrate = 0;
|
| | uint8_t sendcr = 0;
|
| | uint8_t blockmode = 0;
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | void ioinit() {
|
| |
|
| |
|
| | #ifdef STANDALONE
|
| | idd = IKEYBOARD;
|
| | odd = ODSP;
|
| | #endif
|
| |
|
| |
|
| | #ifdef STANDALONESECONDSERIAL
|
| | idd = ISERIAL1;
|
| | odd = OPRT;
|
| | blockmode = 0;
|
| | sendcr = 0;
|
| | #endif
|
| |
|
| | |
| | |
| | |
| | |
| | |
| |
|
| | signalon();
|
| |
|
| |
|
| | wiringbegin();
|
| |
|
| |
|
| | serialbegin();
|
| |
|
| | #ifdef POSIXPRT
|
| | prtbegin();
|
| | #endif
|
| | #ifdef ARDUINOSPI
|
| | spibegin();
|
| | #endif
|
| | #ifdef HASWIRE
|
| | wirebegin();
|
| | #endif
|
| |
|
| |
|
| | fsbegin();
|
| | #ifdef POSIXMQTT
|
| | netbegin();
|
| | mqttbegin();
|
| | #endif
|
| |
|
| |
|
| | #if defined(HASKEYBOARD) || defined(HASKEYPAD)
|
| | kbdbegin();
|
| | #endif
|
| |
|
| | #if defined(DISPLAYDRIVER) || defined(GRAPHDISPLAYDRIVER)
|
| | dspbegin();
|
| | #endif
|
| | #if defined(ARDUINOVGA) || defined(POSIXFRAMEBUFFER)
|
| | vgabegin();
|
| | #endif
|
| |
|
| | #ifdef ARDUINOSENSORS
|
| | sensorbegin();
|
| | #endif
|
| |
|
| | #if defined(HASCLOCK)
|
| | rtcbegin();
|
| | #endif
|
| |
|
| |
|
| | ebegin();
|
| |
|
| |
|
| | iodefaults();
|
| | }
|
| |
|
| | void iodefaults() {
|
| | od=odd;
|
| | id=idd;
|
| | }
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| |
|
| |
|
| | int cheof(int c) { if ((c == -1) || (c == 255)) return 1; else return 0; }
|
| |
|
| |
|
| | char inch() {
|
| | switch(id) {
|
| | case ONULL:
|
| | return bufferread();
|
| | case ISERIAL:
|
| | return serialread();
|
| | #ifdef POSIXPRT
|
| | case ISERIAL1:
|
| | return prtread();
|
| | #endif
|
| | #if defined(HASKEYBOARD) || defined(HASKEYPAD) || defined(HASVT52)
|
| | case IKEYBOARD:
|
| | #if defined(HASVT52)
|
| | if (vt52avail()) return vt52read();
|
| | #endif
|
| | #if defined(HASKEYBOARD) || defined(HASKEYPAD)
|
| | return kbdread();
|
| | #endif
|
| | #endif
|
| | #if defined(HASWIRE) && defined(HASFILEIO)
|
| | case IWIRE:
|
| | return wireread();
|
| | #endif
|
| | #ifdef HASRF24
|
| | case IRADIO:
|
| | return radioread();
|
| | #endif
|
| | #ifdef POSIXMQTT
|
| | case IMQTT:
|
| | return mqttread();
|
| | #endif
|
| | #ifdef FILESYSTEMDRIVER
|
| | case IFILE:
|
| | return fileread();
|
| | #endif
|
| | }
|
| | return 0;
|
| | }
|
| |
|
| | |
| | |
| | |
| | |
| |
|
| | char checkch(){
|
| | switch (id) {
|
| | case ONULL:
|
| | return buffercheckch();
|
| | case ISERIAL:
|
| | return serialcheckch();
|
| | #ifdef FILESYSTEMDRIVER
|
| | case IFILE:
|
| | return fileavailable();
|
| | #endif
|
| | #ifdef HASRF24
|
| | case IRADIO:
|
| | return radioavailable();
|
| | #endif
|
| | #ifdef POSIXMQTT
|
| | case IMQTT:
|
| | return mqttcheckch();
|
| | #endif
|
| | #if (defined(HASWIRE) && defined(HASFILEIO))
|
| | case IWIRE:
|
| | return 0;
|
| | #endif
|
| | #ifdef POSIXPRT
|
| | case ISERIAL1:
|
| | return prtcheckch();
|
| | #endif
|
| | case IKEYBOARD:
|
| | #if defined(HASKEYBOARD) || defined(HASKEYPAD)
|
| | return kbdcheckch();
|
| | #endif
|
| | break;
|
| | }
|
| | return 0;
|
| | }
|
| |
|
| |
|
| | uint16_t availch(){
|
| | switch (id) {
|
| | case ONULL:
|
| | return bufferavailable();
|
| | case ISERIAL:
|
| | return serialavailable();
|
| | #ifdef FILESYSTEMDRIVER
|
| | case IFILE:
|
| | return fileavailable();
|
| | #endif
|
| | #ifdef HASRF24
|
| | case IRADIO:
|
| | return radioavailable();
|
| | #endif
|
| | #ifdef POSIXMQTT
|
| | case IMQTT:
|
| | return mqttavailable();
|
| | #endif
|
| | #if (defined(HASWIRE) && defined(HASFILEIO))
|
| | case IWIRE:
|
| | return wireavailable();
|
| | #endif
|
| | #ifdef POSIXPRT
|
| | case ISERIAL1:
|
| | return prtavailable();
|
| | #endif
|
| | case IKEYBOARD:
|
| | #if defined(HASKEYBOARD) || defined(HASKEYPAD) || defined(HASVT52)
|
| | #if defined(HASVT52)
|
| | if (vt52avail()) return vt52avail();
|
| | #endif
|
| | #if defined(HASKEYBOARD) || defined(HASKEYPAD)
|
| | return kbdavailable();
|
| | #endif
|
| | #endif
|
| | break;
|
| | }
|
| | return 0;
|
| | }
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| |
|
| | uint16_t inb(char *b, int16_t nb) {
|
| | long m;
|
| | uint16_t z;
|
| | int16_t i = 0;
|
| |
|
| | if (blockmode == 1) {
|
| | i=availch();
|
| | if (i>nb-1) i=nb-1;
|
| | b[0]=(unsigned char)i;
|
| | z=i;
|
| | b[i+1]=0;
|
| | b++;
|
| | while (i--) {*b++=inch();}
|
| | } else if (blockmode > 1) {
|
| | m=millis();
|
| | while (i < nb-1) {
|
| | if (availch()) b[++i]=inch();
|
| | if (millis() > m+blockmode) break;
|
| | }
|
| | b[0]=(unsigned char)i;
|
| | z=i;
|
| | b[i+1]=0;
|
| | } else {
|
| | b[0]=0;
|
| | z=0;
|
| | b[1]=0;
|
| | }
|
| | return z;
|
| | }
|
| |
|
| | |
| | |
| |
|
| | uint16_t consins(char *b, uint16_t nb) {
|
| | char c;
|
| | uint16_t z;
|
| |
|
| | z=1;
|
| | while(z < nb) {
|
| | c=inch();
|
| | if (c == '\r') c=inch();
|
| | if (c == '\n' || cheof(c)) {
|
| | break;
|
| | } else {
|
| | b[z++]=c;
|
| | }
|
| | }
|
| | b[z]=0x00;
|
| | z--;
|
| | b[0]=(unsigned char)z;
|
| | return z;
|
| | }
|
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | uint16_t ins(char *b, uint16_t nb) {
|
| | switch(id) {
|
| | case ONULL:
|
| | return bufferins(b, nb);
|
| | case ISERIAL:
|
| | return serialins(b, nb);
|
| | break;
|
| | #if defined(HASKEYBOARD) || defined(HASKEYPAD)
|
| | case IKEYBOARD:
|
| | return kbdins(b, nb);
|
| | #endif
|
| | #ifdef POSIXPRT
|
| | case ISERIAL1:
|
| | return prtins(b, nb);
|
| | #endif
|
| | #if defined(HASWIRE) && defined(HASFILEIO)
|
| | case IWIRE:
|
| | return wireins(b, nb);
|
| | #endif
|
| | #ifdef HASRF24
|
| | case IRADIO:
|
| | return radioins(b, nb);
|
| | #endif
|
| | #ifdef POSIXMQTT
|
| | case IMQTT:
|
| | return mqttins(b, nb);
|
| | #endif
|
| | #ifdef FILESYSTEMDRIVER
|
| | case IFILE:
|
| | return consins(b, nb);
|
| | #endif
|
| | default:
|
| | b[0]=0; b[1]=0;
|
| | return 0;
|
| | }
|
| | }
|
| |
|
| | |
| | |
| | |
| |
|
| | void outch(char c) {
|
| |
|
| |
|
| |
|
| |
|
| | #ifdef HASMSTAB
|
| | if (od > 0 && od <= OPRT) {
|
| | if (c > 31) charcount[od-1]+=1;
|
| | if (c == 10) charcount[od-1]=0;
|
| | }
|
| | #endif
|
| |
|
| | switch(od) {
|
| | case ONULL:
|
| | bufferwrite(c);
|
| | break;
|
| | case OSERIAL:
|
| | serialwrite(c);
|
| | break;
|
| | #ifdef POSIXPRT
|
| | case OPRT:
|
| | prtwrite(c);
|
| | break;
|
| | #endif
|
| | #ifdef FILESYSTEMDRIVER
|
| | case OFILE:
|
| | filewrite(c);
|
| | break;
|
| | #endif
|
| | #if defined(ARDUINOVGA)
|
| | case ODSP:
|
| | vgawrite(c);
|
| | break;
|
| | #elif defined(DISPLAYDRIVER) || defined(GRAPHDISPLAYDRIVER)
|
| | case ODSP:
|
| | dspwrite(c);
|
| | break;
|
| | #endif
|
| | #ifdef POSIXMQTT
|
| | case OMQTT:
|
| | mqttwrite(c);
|
| | break;
|
| | #endif
|
| | default:
|
| | break;
|
| | }
|
| | byield();
|
| | }
|
| |
|
| | |
| | |
| | |
| | |
| |
|
| | void outs(char *ir, uint16_t l){
|
| | uint16_t i;
|
| |
|
| | switch (od) {
|
| | #ifdef HASRF24
|
| | case ORADIO:
|
| | radioouts(ir, l);
|
| | break;
|
| | #endif
|
| | #if (defined(HASWIRE) && defined(HASFILEIO))
|
| | case OWIRE:
|
| | wireouts(ir, l);
|
| | break;
|
| | #endif
|
| | #ifdef POSIXMQTT
|
| | case OMQTT:
|
| | mqttouts(ir, l);
|
| | break;
|
| | #endif
|
| | #ifdef GRAPHDISPLAYDRIVER
|
| | case ODSP:
|
| | dspouts(ir, l);
|
| | break;
|
| | #endif
|
| | default:
|
| | for(i=0; i<l; i++) outch(ir[i]);
|
| | }
|
| | byield();
|
| | }
|
| |
|
| |
|
| |
|
| | struct timeb start_time;
|
| | void timeinit() { ftime(&start_time); }
|
| |
|
| |
|
| | void wiringbegin() {
|
| | #ifdef POSIXWIRING
|
| | wiringPiSetup();
|
| | #endif
|
| | #ifdef POSIXPIGPIO
|
| | pigpio_pi=pigpio_start("localhost","8888");
|
| | printf("** GPIO started with result %d\n", pigpio_pi);
|
| | printf("** pigpio version %d.\n", get_pigpio_version(pigpio_pi));
|
| | printf("** Hardware revision %d.\n", get_hardware_revision(pigpio_pi));
|
| | #endif
|
| | }
|
| |
|
| |
|
| | #ifdef POSIXSIGNALS
|
| | #include <signal.h>
|
| | uint8_t breaksignal = 0;
|
| |
|
| |
|
| | void signalhandler(int sig){
|
| | breaksignal=1;
|
| | signal(BREAKSIGNAL, signalhandler);
|
| | }
|
| |
|
| |
|
| | void signalon() {
|
| | signal(BREAKSIGNAL, signalhandler);
|
| | }
|
| |
|
| |
|
| | void signaloff() {}
|
| |
|
| | #endif
|
| |
|
| | |
| | |
| |
|
| | long freememorysize() {
|
| | #ifdef MSDOS
|
| | return 48000;
|
| | #else
|
| | return 65536;
|
| | #endif
|
| | }
|
| |
|
| | long freeRam() {
|
| | return freememorysize();
|
| | }
|
| |
|
| | |
| | |
| |
|
| | void restartsystem() { exit(0);}
|
| | void activatesleep(long t) {}
|
| |
|
| | |
| | |
| |
|
| | void spibegin() {}
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | const int dsp_rows=0;
|
| | const int dsp_columns=0;
|
| | void dspsetupdatemode(uint8_t c) {}
|
| | void dspwrite(char c){}
|
| | void dspbegin() {}
|
| | uint8_t dspstat(uint8_t c) {return 0; }
|
| | char dspwaitonscroll() { return 0; }
|
| | uint8_t dspactive() {return 0; }
|
| | void dspsetscrollmode(uint8_t c, uint8_t l) {}
|
| | void dspsetcursor(uint8_t c) {}
|
| |
|
| | #ifndef POSIXFRAMEBUFFER
|
| |
|
| | void rgbcolor(uint8_t r, uint8_t g, uint8_t b) {}
|
| | void vgacolor(uint8_t c) {}
|
| | void plot(int x, int y) {}
|
| | void line(int x0, int y0, int x1, int y1) {}
|
| | void rect(int x0, int y0, int x1, int y1) {}
|
| | void frect(int x0, int y0, int x1, int y1) {}
|
| | void circle(int x0, int y0, int r) {}
|
| | void fcircle(int x0, int y0, int r) {}
|
| |
|
| |
|
| | void vgabegin(){}
|
| | void vgawrite(char c){}
|
| | #else
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #include <sys/fcntl.h>
|
| | #include <sys/ioctl.h>
|
| | #include <linux/fb.h>
|
| | #include <sys/mman.h>
|
| | #include <string.h>
|
| |
|
| |
|
| | char *framemem = 0;
|
| | int framedesc = 0;
|
| |
|
| |
|
| | struct fb_var_screeninfo vinfo;
|
| | struct fb_fix_screeninfo finfo;
|
| | struct fb_var_screeninfo orig_vinfo;
|
| |
|
| |
|
| | long framecolor = 0xffffff;
|
| | int framevgacolor = 0x0f;
|
| | long framescreensize = 0;
|
| | int framecolordepth = 0;
|
| |
|
| |
|
| | void vgabegin() {
|
| |
|
| |
|
| | framedesc = open("/dev/fb0", O_RDWR);
|
| | if (!framedesc) {
|
| | printf("** error opening frame buffer \n");
|
| | return;
|
| | }
|
| |
|
| |
|
| | if (ioctl(framedesc, FBIOGET_VSCREENINFO, &vinfo)) {
|
| | printf("** error reading screen information \n");
|
| | return;
|
| | }
|
| | printf("** detected screen %dx%d, %dbpp \n", vinfo.xres, vinfo.yres, vinfo.bits_per_pixel);
|
| |
|
| |
|
| | memcpy(&orig_vinfo, &vinfo, sizeof(struct fb_var_screeninfo));
|
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| |
|
| |
|
| | framecolordepth = vinfo.bits_per_pixel;
|
| |
|
| |
|
| | if (ioctl(framedesc, FBIOGET_FSCREENINFO, &finfo)) {
|
| | printf("Error reading fixed information.\n");
|
| | return;
|
| | }
|
| |
|
| |
|
| |
|
| | framescreensize = (framecolordepth/8) * vinfo.xres * vinfo.yres;
|
| | framemem = (char*)mmap(0, framescreensize, PROT_READ | PROT_WRITE, MAP_SHARED, framedesc, 0);
|
| | if ((int)framemem == -1) {
|
| | printf("** error failed to mmap.\n");
|
| | framemem=0;
|
| | return;
|
| | }
|
| |
|
| |
|
| | }
|
| |
|
| |
|
| | void vgaend() {
|
| | if ((int)framemem) munmap(framemem, framescreensize);
|
| | if (ioctl(framedesc, FBIOPUT_VSCREENINFO, &orig_vinfo)) {
|
| | printf("** error re-setting variable information \n");
|
| | }
|
| | close(framedesc);
|
| | }
|
| |
|
| |
|
| | void rgbcolor(int r, int g, int b) {
|
| | switch (framecolordepth/8) {
|
| | case 4:
|
| | framecolor = (((long)r << 16) & 0x00ff0000) | (((long)g << 8) & 0x0000ff00) | ((long)b & 0x000000ff);
|
| | break;
|
| | case 3:
|
| | framecolor = (((long)r << 16) & 0x00ff0000) | (((long)g << 8) & 0x0000ff00) | ((long)b & 0x000000ff);
|
| | break;
|
| | case 2:
|
| | framecolor = ((long) (r & 0xff) >> 3) << 10 | ((long) (g & 0xff) >> 2) << 6 | ((long) (b & 0xff) >> 3);
|
| | break;
|
| | case 1:
|
| | framecolor = ((long) (r & 0xff) >> 5) << 5 | ((long) (g & 0xff) >> 5) << 2 | ((long) (b & 0xff) >> 6);
|
| | break;
|
| | }
|
| | }
|
| |
|
| |
|
| | void vgacolor(short c) {
|
| | short base=128;
|
| | framevgacolor=c;
|
| | if (c==8) { rgbcolor(64, 64, 64); return; }
|
| | if (c>8) base=255;
|
| | rgbcolor(base*(c&1), base*((c&2)/2), base*((c&4)/4));
|
| | }
|
| |
|
| |
|
| | void plot(int x, int y) {
|
| | unsigned long pix_offset;
|
| |
|
| |
|
| | if (x < 0 || y < 0 || x >= vinfo.xres || y >= vinfo.yres) return;
|
| |
|
| |
|
| | pix_offset = (framecolordepth/8) * x + y * finfo.line_length;
|
| |
|
| | if (pix_offset < 0 || pix_offset+ (framecolordepth/8-1) > framescreensize) return;
|
| |
|
| |
|
| | switch (framecolordepth/8) {
|
| | case 4:
|
| | *((char*)(framemem + pix_offset )) = (unsigned char)(framecolor & 0x000000ff);
|
| | *((char*)(framemem + pix_offset+1)) = (unsigned char)((framecolor >> 8) & 0x000000ff);
|
| | *((char*)(framemem + pix_offset+3)) = (unsigned char)((framecolor >> 16) & 0x000000ff);
|
| | break;
|
| | case 3:
|
| | *((char*)(framemem + pix_offset )) = (unsigned char)(framecolor & 0x000000ff);
|
| | *((char*)(framemem + pix_offset+1)) = (unsigned char)((framecolor >> 8) & 0x000000ff);
|
| | *((char*)(framemem + pix_offset+2)) = (unsigned char)((framecolor >> 16) & 0x000000ff);
|
| | break;
|
| | case 2:
|
| | *((char*)(framemem + pix_offset )) = (unsigned char)((framecolor & 0x1f) + (((framecolor >> 5) & 0x03) << 6));
|
| | *((char*)(framemem + pix_offset+1)) = (unsigned char)((framecolor >> 7) & 0xff);
|
| | break;
|
| | case 1:
|
| | *((char*)(framemem + pix_offset )) = (unsigned char)(framecolor & 0x000000ff);
|
| | break;
|
| | }
|
| |
|
| | }
|
| |
|
| |
|
| | void line(int x0, int y0, int x1, int y1) {
|
| | int dx, dy, sx, sy;
|
| | int error, e2;
|
| |
|
| | dx=abs(x0-x1);
|
| | sx=x0 < x1 ? 1 : -1;
|
| | dy=-abs(y1-y0);
|
| | sy=y0 < y1 ? 1 : -1;
|
| | error=dx+dy;
|
| |
|
| | while(1) {
|
| | plot(x0, y0);
|
| | if (x0 == x1 && y0 == y1) break;
|
| | e2=2*error;
|
| | if (e2 > dy) {
|
| | if (x0 == x1) break;
|
| | error=error+dy;
|
| | x0=x0+sx;
|
| | }
|
| | if (e2 <= dx) {
|
| | if (y0 == y1) break;
|
| | error=error+dx;
|
| | y0=y0+sy;
|
| | }
|
| | }
|
| | }
|
| |
|
| |
|
| | void rect(int x0, int y0, int x1, int y1) {
|
| | line(x0, y0, x1, y0);
|
| | line(x1, y0, x1, y1);
|
| | line(x1, y1, x0, y1);
|
| | line(x0, y1, x0, y0);
|
| | }
|
| |
|
| |
|
| | void frect(int x0, int y0, int x1, int y1) {
|
| | int dx, sx;
|
| | int x;
|
| | sx=x0 < x1 ? 1 : -1;
|
| | for(x=x0; x != x1; x=x+sx) line(x, y0, x, y1);
|
| | }
|
| |
|
| |
|
| | void circle(int x0, int y0, int r) {
|
| | int x, y, err;
|
| | x=-r;
|
| | y=0;
|
| | err=2-2*r;
|
| | do {
|
| | plot(x0-x, y0+y);
|
| | plot(x0-y, y0-x);
|
| | plot(x0+x, y0-y);
|
| | plot(x0+y, y0+x);
|
| | r=err;
|
| | if (r <= y) err+=++y*2+1;
|
| | if (r > x || err > y) err+=++x*2+1;
|
| | } while (x < 0);
|
| | }
|
| |
|
| |
|
| | void fcircle(int x0, int y0, int r) {
|
| | int x, y, err;
|
| | x=-r;
|
| | y=0;
|
| | err=2-2*r;
|
| | do {
|
| | line(x0-x, y0+y, x0+x, y0+y);
|
| | line(x0+x, y0-y, x0-x, y0-y);
|
| | r=err;
|
| | if (r <= y) err+=++y*2+1;
|
| | if (r > x || err > y) err+=++x*2+1;
|
| | } while (x < 0);
|
| | }
|
| |
|
| |
|
| | void vgawrite(char c) {}
|
| | #endif
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | void kbdbegin() {}
|
| | uint8_t kbdstat(uint8_t c) {return 0; }
|
| | uint8_t kbdavailable(){ return 0;}
|
| | char kbdread() { return 0;}
|
| | char kbdcheckch() { return 0;}
|
| |
|
| |
|
| | uint8_t vt52avail() {return 0;}
|
| | char vt52read() { return 0; }
|
| |
|
| |
|
| |
|
| | |
| | |
| |
|
| |
|
| | void rtcbegin() {}
|
| |
|
| | uint16_t rtcget(uint8_t i) {
|
| | struct timeb thetime;
|
| | struct tm *ltime;
|
| | ftime(&thetime);
|
| | ltime=localtime(&thetime.time);
|
| | switch (i) {
|
| | case 0:
|
| | return ltime->tm_sec;
|
| | case 1:
|
| | return ltime->tm_min;
|
| | case 2:
|
| | return ltime->tm_hour;
|
| | case 3:
|
| | return ltime->tm_wday;
|
| | case 4:
|
| | return ltime->tm_mday;
|
| | case 5:
|
| | return ltime->tm_mon+1;
|
| | case 6:
|
| | return ltime->tm_year-100;
|
| | default:
|
| | return 0;
|
| | }
|
| | }
|
| |
|
| | void rtcset(uint8_t i, uint16_t v) {}
|
| |
|
| | |
| | |
| |
|
| | #ifndef POSIXMQTT
|
| | void netbegin() {}
|
| | uint8_t netconnected() { return 0; }
|
| | void mqttbegin() {}
|
| | uint8_t mqttstat(uint8_t c) {return 0; }
|
| | uint8_t mqttstate() {return 0;}
|
| | void mqttsubscribe(const char *t) {}
|
| | void mqttsettopic(const char *t) {}
|
| | void mqttouts(const char *m, uint16_t l) {}
|
| | uint16_t mqttins(char *b, uint16_t nb) { return 0; };
|
| | char mqttread() {return 0;};
|
| | #else
|
| |
|
| | #include <mosquitto.h>
|
| |
|
| | void netbegin() {}
|
| | uint8_t netconnected() { return 1; }
|
| |
|
| | void mqttbegin() {}
|
| | uint8_t mqttstat(uint8_t c) {return 0; }
|
| | uint8_t mqttstate() {return 0;}
|
| | void mqttsubscribe(const char *t) {}
|
| | void mqttsettopic(const char *t) {}
|
| | void mqttouts(const char *m, uint16_t l) {}
|
| | uint16_t mqttins(char *b, uint16_t nb) { return 0; };
|
| | char mqttread() {return 0;};
|
| | #endif
|
| |
|
| | |
| | |
| | |
| | |
| |
|
| | int8_t eeprom[EEPROMSIZE];
|
| | void ebegin(){
|
| | int i;
|
| | FILE* efile;
|
| | for (i=0; i<EEPROMSIZE; i++) eeprom[i]=-1;
|
| | efile=fopen("eeprom.dat", "r");
|
| | if (efile) fread(eeprom, EEPROMSIZE, 1, efile);
|
| | }
|
| |
|
| | void eflush(){
|
| | FILE* efile;
|
| | efile=fopen("eeprom.dat", "w");
|
| | if (efile) fwrite(eeprom, EEPROMSIZE, 1, efile);
|
| | fclose(efile);
|
| | }
|
| |
|
| | uint16_t elength() { return EEPROMSIZE; }
|
| | void eupdate(uint16_t a, int8_t c) { if (a>=0 && a<EEPROMSIZE) eeprom[a]=c; }
|
| | int8_t eread(uint16_t a) { if (a>=0 && a<EEPROMSIZE) return eeprom[a]; else return -1; }
|
| |
|
| |
|
| | |
| | |
| |
|
| |
|
| | #if !defined(POSIXWIRING) && !defined(POSIXPIGPIO)
|
| | uint16_t aread(uint8_t p) { return 0; }
|
| | uint8_t dread(uint8_t p) { return 0; }
|
| | void awrite(uint8_t p, uint16_t v){}
|
| | void dwrite(uint8_t p, uint8_t v){}
|
| | void pinm(uint8_t p, uint8_t m){}
|
| |
|
| |
|
| | uint32_t pulsein(uint8_t pin, uint8_t val, uint32_t t) { return 0; }
|
| |
|
| |
|
| | void pulseout(uint16_t unit, uint8_t pin, uint16_t duration, uint16_t val, uint16_t repetition, uint16_t interval) {}
|
| | #endif
|
| |
|
| | #if defined(POSIXWIRING)
|
| | uint16_t aread(uint8_t p) { return analogRead(p); }
|
| | uint8_t dread(uint8_t p) { return digitalRead(p); }
|
| | void awrite(uint8_t p, uint16_t v){ analogWrite(p, v); }
|
| | void dwrite(uint8_t p, uint8_t v){ if (v) digitalWrite(p, HIGH); else digitalWrite(p, LOW); }
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | void pinm(uint8_t p, uint8_t m){
|
| | if (m == 0) m=INPUT;
|
| | else if (m == 1) m=OUTPUT;
|
| | pinMode(p,m);
|
| | }
|
| |
|
| |
|
| | uint32_t pulsein(uint8_t pin, uint8_t val, uint32_t t) {}
|
| |
|
| |
|
| | void pulseout(uint16_t unit, uint8_t pin, uint16_t duration, uint16_t val, uint16_t repetition, uint16_t interval) { return 0;}
|
| | #endif
|
| |
|
| |
|
| | #if defined(POSIXPIGPIO)
|
| | uint16_t aread(uint8_t p) { return 0; }
|
| | uint8_t dread(uint8_t p) { return gpio_read(pigpio_pi, p); }
|
| | void awrite(uint8_t p, uint16_t v) { set_PWM_dutycycle(pigpio_pi, p, v); }
|
| | void dwrite(uint8_t p, uint8_t v){ gpio_write(pigpio_pi, p, v); }
|
| | void pinm(uint8_t p, uint8_t m){ set_mode(pigpio_pi, p, m); }
|
| |
|
| |
|
| | uint32_t pulsein(uint8_t pin, uint8_t val, uint32_t t) {}
|
| |
|
| |
|
| | void pulseout(uint16_t unit, uint8_t pin, uint16_t duration, uint16_t val, uint16_t repetition, uint16_t interval) { return 0; }
|
| |
|
| | #endif
|
| |
|
| | #if defined(BREAKPIN) && defined(INPUT_PULLUP)
|
| | void breakpinbegin() { pinm(BREAKPIN, INPUT_PULLUP); }
|
| | uint8_t getbreakpin() { return dread(BREAKPIN); }
|
| | #else
|
| |
|
| | void breakpinbegin() {}
|
| | uint8_t getbreakpin() { return 1; }
|
| | #endif
|
| |
|
| |
|
| | #if !defined(POSIXWIRING)
|
| | unsigned long millis() {
|
| | struct timeb thetime;
|
| | ftime(&thetime);
|
| | return (thetime.time-start_time.time)*1000+(thetime.millitm-start_time.millitm);
|
| | }
|
| |
|
| |
|
| | unsigned long micros() { return 0; }
|
| | #endif
|
| |
|
| | void playtone(uint8_t pin, uint16_t frequency, uint16_t duration, uint8_t volume) {}
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| |
|
| | uint32_t lastyield=0;
|
| | uint32_t lastlongyield=0;
|
| |
|
| | void byield() {
|
| |
|
| |
|
| | fastticker();
|
| |
|
| |
|
| | bloop();
|
| |
|
| | #if defined(BASICBGTASK)
|
| |
|
| | if (millis()-lastyield > YIELDINTERVAL-1) {
|
| | yieldfunction();
|
| | lastyield=millis();
|
| | }
|
| |
|
| |
|
| | if (millis()-lastlongyield > LONGYIELDINTERVAL-1) {
|
| | longyieldfunction();
|
| | lastlongyield=millis();
|
| | }
|
| | #endif
|
| |
|
| |
|
| | yieldschedule();
|
| | }
|
| |
|
| |
|
| | void bdelay(uint32_t t) {
|
| | unsigned long i;
|
| | if (t>0) {
|
| | i=millis();
|
| | while (millis() < i+t) byield();
|
| | }
|
| | }
|
| |
|
| |
|
| | void fastticker() {
|
| |
|
| | #ifdef FASTTICKERPROFILE
|
| | fasttickerprofile();
|
| | #endif
|
| |
|
| | #ifdef ARDUINOTONEEMULATION
|
| | tonetoggle();
|
| | #endif
|
| | }
|
| |
|
| |
|
| | void yieldfunction() {}
|
| |
|
| |
|
| | void longyieldfunction() {
|
| | #ifdef BASICBGTASK
|
| |
|
| | #ifdef POSIXNONBLOCKING
|
| | if (checkch() == BREAKCHAR) breakcondition=1;
|
| | #endif
|
| | #endif
|
| | }
|
| |
|
| | void yieldschedule() {}
|
| |
|
| | |
| | |
| | |
| | |
| | |
| |
|
| | void fsbegin() {}
|
| | FILE* ifile;
|
| | FILE* ofile;
|
| | #ifndef MSDOS
|
| | DIR* root;
|
| | struct dirent* file;
|
| | #else
|
| | void* root;
|
| | void* file;
|
| | #endif
|
| |
|
| |
|
| | uint8_t fsstat(uint8_t c) { return 1; }
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | void filewrite(char c) {
|
| | if (ofile)
|
| | fputc(c, ofile);
|
| | else
|
| | ioer=1;
|
| | }
|
| |
|
| | char fileread(){
|
| | char c;
|
| | if (ifile) c=fgetc(ifile); else { ioer=1; return 0; }
|
| | if (cheof(c)) ioer=-1;
|
| | return c;
|
| | }
|
| |
|
| | uint8_t ifileopen(const char* filename){
|
| | ifile=fopen(filename, "r");
|
| | return ifile!=0;
|
| | }
|
| |
|
| | void ifileclose(){
|
| | if (ifile) fclose(ifile);
|
| | ifile=0;
|
| | }
|
| |
|
| | uint8_t ofileopen(const char* filename, const char* m){
|
| | ofile=fopen(filename, m);
|
| | return ofile!=0;
|
| | }
|
| |
|
| | void ofileclose(){
|
| | if (ofile) fclose(ofile);
|
| | ofile=0;
|
| | }
|
| |
|
| | int fileavailable(){ return !feof(ifile); }
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #ifdef MSDOS
|
| | #include <dos.h>
|
| | #include <dir.h>
|
| | struct ffblk *bffblk;
|
| | #endif
|
| |
|
| | void rootopen() {
|
| | #ifndef MSDOS
|
| | root=opendir ("./");
|
| | #else
|
| | (void) findfirst("*.*", bffblk, 0);
|
| | #endif
|
| | }
|
| |
|
| | uint8_t rootnextfile() {
|
| | #ifndef MSDOS
|
| | file = readdir(root);
|
| | return (file != 0);
|
| | #else
|
| | return (findnext(bffblk) == 0);
|
| | #endif
|
| | }
|
| |
|
| | uint8_t rootisfile() {
|
| | #if !defined(MSDOS) && !defined(MINGW)
|
| | return (file->d_type == DT_REG);
|
| | #else
|
| | return 1;
|
| | #endif
|
| | }
|
| |
|
| | const char* rootfilename() {
|
| | #ifndef MSDOS
|
| | return (file->d_name);
|
| | #else
|
| | return (bffblk->ff_name);
|
| | #endif
|
| | }
|
| |
|
| | uint32_t rootfilesize() {
|
| | #ifndef MSDOS
|
| | return 0;
|
| | #else
|
| | return (bffblk->ff_fsize);
|
| | #endif
|
| | }
|
| |
|
| | void rootfileclose() {}
|
| | void rootclose(){
|
| | #ifndef MSDOS
|
| | (void) closedir(root);
|
| | #endif
|
| | }
|
| |
|
| | |
| | |
| |
|
| | void removefile(const char *filename) {
|
| | remove(filename);
|
| | }
|
| |
|
| | |
| | |
| |
|
| | void formatdisk(uint8_t i) {
|
| | puts("Format not implemented on this platform.");
|
| | }
|
| |
|
| | |
| | |
| | |
| | |
| |
|
| |
|
| |
|
| | void bufferbegin() {}
|
| |
|
| | |
| |
|
| | void bufferwrite(char c) {
|
| | if (!nullbuffer) return;
|
| | switch (c) {
|
| | case 12:
|
| | nullbuffer[nullbuffer[0]+1]=0;
|
| | nullbuffer[0]=0;
|
| | break;
|
| | case 10:
|
| | case 13:
|
| | break;
|
| | case 8:
|
| | if (nullbuffer[0]>0) nullbuffer[0]--;
|
| | break;
|
| | default:
|
| | if (nullbuffer[0] < nullbufsize-1 && nullbuffer[0] < 127) {
|
| | nullbuffer[++nullbuffer[0]]=c;
|
| | nullbuffer[nullbuffer[0]+1]=0;
|
| | }
|
| | break;
|
| | }
|
| | }
|
| |
|
| |
|
| | char bufferread() { return 0; }
|
| | uint16_t bufferavailable() { return 0; }
|
| | char buffercheckch() { return 0; }
|
| | void bufferflush() { }
|
| | uint16_t bufferins(char *b, uint16_t nb) { return 0; }
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #ifdef POSIXNONBLOCKING
|
| | #if !defined(MSDOS) && !defined(MINGW)
|
| | #include <fcntl.h>
|
| |
|
| | |
| | |
| | |
| | |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| |
|
| |
|
| | void serialbegin() {
|
| |
|
| | |
| | |
| |
|
| | }
|
| |
|
| |
|
| | char serialcheckch(){
|
| | fcntl(0, F_SETFL, fcntl(0, F_GETFL) | O_NONBLOCK);
|
| | int ch=getchar();
|
| | ungetc(ch, stdin);
|
| | fcntl(0, F_SETFL, fcntl(0, F_GETFL) & ~O_NONBLOCK);
|
| | return ch;
|
| | }
|
| |
|
| |
|
| | uint16_t serialavailable() {
|
| | if (cheof(serialcheckch())) return 0; else return 1;
|
| | }
|
| |
|
| |
|
| | char serialread() {
|
| | char ch;
|
| |
|
| | ch=getchar();
|
| | return ch;
|
| |
|
| | |
| | |
| | |
| |
|
| | }
|
| |
|
| |
|
| | void serialflush() {
|
| | fcntl(0, F_SETFL, fcntl(0, F_GETFL) | O_NONBLOCK);
|
| | while (!cheof(getchar()));
|
| | fcntl(0, F_SETFL, fcntl(0, F_GETFL) & ~O_NONBLOCK);
|
| | }
|
| | #else
|
| |
|
| | #include <conio.h>
|
| |
|
| | void serialbegin(){}
|
| |
|
| |
|
| | char serialread() {
|
| | return getchar();
|
| | }
|
| |
|
| |
|
| | char serialcheckch(){
|
| | if (kbhit()) return getch();
|
| | }
|
| |
|
| |
|
| | uint16_t serialavailable() {
|
| | return 1;
|
| | }
|
| |
|
| |
|
| | void serialflush() { }
|
| |
|
| | #endif
|
| | #else
|
| |
|
| | void serialbegin(){}
|
| | char serialread() { return getchar(); }
|
| | char serialcheckch(){ return 1; }
|
| | uint16_t serialavailable() { return 1; }
|
| | void serialflush() {}
|
| | #endif
|
| |
|
| | uint8_t serialstat(uint8_t c) {
|
| | if (c == 0) return 1;
|
| | if (c == 1) return serial_baudrate/1000;
|
| | return 0;
|
| | }
|
| |
|
| |
|
| | void sendcsi() {
|
| | putchar(27); putchar('[');
|
| | }
|
| |
|
| |
|
| | #ifdef POSIXVT52TOANSI
|
| | #include <stdlib.h>
|
| | uint8_t dspesc = 0;
|
| | uint8_t vt52s = 0;
|
| | int cursory = 0;
|
| | uint8_t vt52active = 1;
|
| |
|
| |
|
| | uint8_t vt52number(char c) {
|
| | uint8_t b=c;
|
| | if (b>31) return b-32; else return 0;
|
| | }
|
| |
|
| |
|
| | void dspsetcursory(uint8_t i) {
|
| | cursory=i;
|
| | }
|
| |
|
| |
|
| | void dspsetcursorx(uint8_t i) {
|
| | sendcsi();
|
| | printf("%d;%dH", abs(cursory)+1, i+1);
|
| | }
|
| |
|
| |
|
| | void dspsetfgcolor(uint8_t co) {
|
| | sendcsi();
|
| | if (co < 8) {
|
| | putchar('3');
|
| | } else {
|
| | putchar('9');
|
| | co=co-8;
|
| | }
|
| | putchar('0'+co);
|
| | putchar('m');
|
| | }
|
| |
|
| | void dspsetbgcolor(uint8_t co) {
|
| | sendcsi();
|
| | if (co < 8) {
|
| | putchar('4');
|
| | } else {
|
| | putchar('1'); putchar('0');
|
| | co=co-8;
|
| | }
|
| | putchar('0'+co);
|
| | putchar('m');
|
| | }
|
| |
|
| |
|
| | void dspvt52(char* c){
|
| |
|
| |
|
| | switch (vt52s) {
|
| | case 'Y':
|
| | if (dspesc == 2) {
|
| | dspsetcursory(vt52number(*c));
|
| | dspesc=1;
|
| | *c=0;
|
| | return;
|
| | }
|
| | if (dspesc == 1) {
|
| | dspsetcursorx(vt52number(*c));
|
| | *c=0;
|
| | }
|
| | vt52s=0;
|
| | break;
|
| | case 'b':
|
| | dspsetfgcolor(vt52number(*c));
|
| | *c=0;
|
| | vt52s=0;
|
| | break;
|
| | case 'c':
|
| | dspsetbgcolor(vt52number(*c));
|
| | *c=0;
|
| | vt52s=0;
|
| | break;
|
| | }
|
| |
|
| |
|
| | switch (*c) {
|
| | case 'v':
|
| | break;
|
| | case 'w':
|
| | break;
|
| | case '^':
|
| | break;
|
| | case '_':
|
| | break;
|
| | case 'W':
|
| | break;
|
| | case 'X':
|
| | break;
|
| | case 'V':
|
| | break;
|
| | case ']':
|
| | break;
|
| | case 'F':
|
| | break;
|
| | case 'G':
|
| | break;
|
| | case 'Z':
|
| | break;
|
| | case '=':
|
| | case '>':
|
| | break;
|
| | case 'b':
|
| | case 'c':
|
| | vt52s=*c;
|
| | dspesc=1;
|
| | *c=0;
|
| | return;
|
| | case 'e':
|
| | break;
|
| | case 'f':
|
| | break;
|
| | case 'p':
|
| | break;
|
| | case 'q':
|
| | break;
|
| | case 'A':
|
| | sendcsi();
|
| | putchar('A');
|
| | break;
|
| | case 'B':
|
| | sendcsi();
|
| | putchar('B');
|
| | break;
|
| | case 'C':
|
| | sendcsi();
|
| | putchar('C');
|
| | break;
|
| | case 'D':
|
| | sendcsi();
|
| | putchar('D');
|
| | break;
|
| | case 'E':
|
| | *c=12;
|
| | dspesc=0;
|
| | return;
|
| | case 'H':
|
| | *c=2;
|
| | dspesc=0;
|
| | return;
|
| | case 'Y':
|
| | vt52s='Y';
|
| | dspesc=2;
|
| | *c=0;
|
| | return;
|
| | case 'J':
|
| | sendcsi();
|
| | putchar('J');
|
| | break;
|
| | case 'd':
|
| | sendcsi();
|
| | putchar('1'); putchar('J');
|
| | break;
|
| | case 'K':
|
| | sendcsi();
|
| | putchar('K');
|
| | break;
|
| | case 'l':
|
| | sendcsi();
|
| | putchar('2'); putchar('K');
|
| | break;
|
| | case 'o':
|
| | sendcsi();
|
| | putchar('1'); putchar('K');
|
| | break;
|
| | case 'k':
|
| | break;
|
| | case 'j':
|
| | break;
|
| | case 'I':
|
| | putchar(27);
|
| | putchar('M');
|
| | break;
|
| | case 'L':
|
| | break;
|
| | case 'M':
|
| | sendcsi();
|
| | putchar('2'); putchar('K');
|
| | break;
|
| | }
|
| | dspesc=0;
|
| | *c=0;
|
| | }
|
| | #endif
|
| |
|
| |
|
| | uint16_t serialins(char* b, uint16_t nb) { return consins(b, nb); }
|
| |
|
| | void serialwrite(char c) {
|
| |
|
| |
|
| | #ifdef POSIXVT52TOANSI
|
| | if (dspesc) {
|
| | dspvt52(&c);
|
| | if (c == 0) return;
|
| | }
|
| |
|
| |
|
| | if (c == 27 && vt52active) {
|
| | dspesc=1;
|
| | return;
|
| | }
|
| | #endif
|
| |
|
| | |
| | |
| |
|
| | #ifdef POSIXTERMINAL
|
| | switch (c) {
|
| |
|
| | case 12:
|
| | sendcsi();
|
| | putchar('2'); putchar('J');
|
| |
|
| | case 2:
|
| | sendcsi();
|
| | putchar('H');
|
| | return;
|
| | }
|
| | #endif
|
| |
|
| |
|
| | putchar(c);
|
| | }
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #ifdef POSIXPRT
|
| | #include <fcntl.h>
|
| | #if !defined(MSDOS) && !defined(MINGW)
|
| | #include <termios.h>
|
| | #endif
|
| |
|
| |
|
| | int prtfile;
|
| |
|
| |
|
| | char prtbuf = 0;
|
| |
|
| |
|
| | void prtbegin() {}
|
| |
|
| | char prtopen(char* filename, uint16_t mode) {
|
| | #if !defined(MSDOS) && !defined(MINGW)
|
| |
|
| |
|
| | prtfile=open(filename, O_RDWR | O_NOCTTY);
|
| | if (prtfile == -1) {
|
| | perror(filename);
|
| | return 0;
|
| | }
|
| |
|
| |
|
| | tcflush(prtfile, TCIOFLUSH);
|
| |
|
| |
|
| | struct termios opt;
|
| | (void) tcgetattr(prtfile, &opt);
|
| |
|
| |
|
| | |
| | |
| | |
| | |
| |
|
| |
|
| |
|
| | opt.c_cc[VTIME] = 1;
|
| | opt.c_cc[VMIN] = 0;
|
| |
|
| |
|
| | switch (mode) {
|
| | case 9600:
|
| | cfsetospeed(&opt, B9600);
|
| | break;
|
| | default:
|
| | cfsetospeed(&opt, B9600);
|
| | break;
|
| | }
|
| | cfsetispeed(&opt, cfgetospeed(&opt));
|
| |
|
| |
|
| | tcsetattr(prtfile, TCSANOW, &opt);
|
| | #endif
|
| |
|
| | return 1;
|
| | }
|
| |
|
| | void prtclose() {
|
| | if (prtfile) close(prtfile);
|
| | }
|
| |
|
| | uint8_t prtstat(uint8_t c) {return 1; }
|
| |
|
| | void prtset(uint32_t s) {}
|
| |
|
| |
|
| | void prtwrite(char c) {
|
| | int i=write(prtfile, &c, 1);
|
| | if (i != 1) ioer=1;
|
| | }
|
| |
|
| |
|
| | char prtread() {
|
| | char c;
|
| |
|
| |
|
| | if (prtbuf) {
|
| | c=prtbuf;
|
| | prtbuf=0;
|
| | } else {
|
| |
|
| | int i=read(prtfile, &c, 1);
|
| | if (i < 0) {
|
| | ioer=1;
|
| | return 0;
|
| | }
|
| | if (i == 0) return -1;
|
| | }
|
| | return c;
|
| | }
|
| |
|
| |
|
| | char prtcheckch(){
|
| | if (!prtbuf) {
|
| | int i=read(prtfile, &prtbuf, 1);
|
| | if (i <= 0) prtbuf=0;
|
| | }
|
| | return prtbuf;
|
| | }
|
| |
|
| | uint16_t prtavailable(){
|
| | return prtcheckch()!=0;
|
| | }
|
| |
|
| | uint16_t prtins(char* b, uint16_t nb) {
|
| | if (blockmode > 0) return inb(b, nb); else return consins(b, nb);
|
| | }
|
| |
|
| | #else
|
| | void prtbegin() {}
|
| | uint8_t prtstat(uint8_t c) {return 0; }
|
| | void prtset(uint32_t s) {}
|
| | void prtwrite(char c) {}
|
| | char prtread() {return 0;}
|
| | char prtcheckch(){ return 0; }
|
| | uint16_t prtavailable(){ return 0; }
|
| | uint16_t prtins(char* b, uint16_t nb) { return 0; }
|
| | #endif
|
| |
|
| |
|
| | |
| | |
| |
|
| | #if defined(POSIXWIRE) && defined(POSIXPIGPIO)
|
| | uint8_t wire_slaveid = 0;
|
| |
|
| |
|
| | void wirebegin() {
|
| | }
|
| |
|
| |
|
| | uint8_t wirestat(uint8_t c) {
|
| | return 1;
|
| | }
|
| |
|
| | void wireopen(char s, uint8_t m) {
|
| | if (m == 0) {
|
| | wire_slaveid=s;
|
| | } else if ( m == 1 ) {
|
| | outsc("** wire slave mode not implemented"); outcr();
|
| | } else
|
| | error(EORANGE);
|
| | }
|
| |
|
| |
|
| |
|
| | uint16_t wireins(char *b, uint8_t l) {
|
| | int handle;
|
| | int16_t z;
|
| |
|
| | handle=i2c_open(pigpio_pi, POSIXI2CBUS, wire_slaveid, 0);
|
| | if (handle < 0) {
|
| | printf("** wire handle %d returned \n", handle);
|
| | ioer=1;
|
| | }
|
| |
|
| | z=i2c_read_device(pigpio_pi, handle, b+1, l);
|
| |
|
| | if (z < 0) {
|
| | ioer=-1;
|
| | z=0;
|
| | }
|
| | b[0]=z;
|
| |
|
| | i2c_close(pigpio_pi, handle);
|
| |
|
| | return z;
|
| | }
|
| |
|
| |
|
| | void wireouts(char *b, uint8_t l) {
|
| | int handle;
|
| |
|
| | handle=i2c_open(pigpio_pi, POSIXI2CBUS, wire_slaveid, 0);
|
| | if (handle < 0) {
|
| | printf("** wire handle %d returned \n", handle);
|
| | ioer=1;
|
| | }
|
| |
|
| | if (i2c_write_device(pigpio_pi, handle, b, l) < 0) ioer=-1;
|
| |
|
| | i2c_close(pigpio_pi, handle);
|
| | }
|
| |
|
| | uint16_t wireavailable() { return 1; }
|
| |
|
| |
|
| | int16_t wirereadbyte(uint8_t port) {
|
| | int res, handle;
|
| | handle=i2c_open(pigpio_pi, POSIXI2CBUS, port, 0);
|
| | if (handle < 0) {
|
| | printf("** wire handle %d returned \n", handle);
|
| | ioer=1;
|
| | return -1;
|
| | }
|
| |
|
| | res=i2c_read_byte(pigpio_pi, handle);
|
| | i2c_close(pigpio_pi, handle);
|
| | return res;
|
| | }
|
| |
|
| |
|
| | void wirewritebyte(uint8_t port, int16_t data) {
|
| | int res, handle;
|
| | handle=i2c_open(pigpio_pi, POSIXI2CBUS, port, 0);
|
| | if (handle < 0) { ioer=1; return; }
|
| |
|
| | ioer=i2c_write_byte(pigpio_pi, handle, data);
|
| |
|
| | i2c_close(pigpio_pi, handle);
|
| | }
|
| |
|
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| |
|
| |
|
| | void wirewriteword(short port, short data1, short data2) {
|
| | int res, handle;
|
| | mem_t buf[2];
|
| |
|
| | handle=i2c_open(pigpio_pi, POSIXI2CBUS, port, 0);
|
| | if (handle < 0) { ioer=1; return; }
|
| |
|
| | buf[0]=data1;
|
| | buf[1]=data2;
|
| |
|
| | if (i2c_write_device(pigpio_pi, handle, buf, 2) <0 ) ioer=-1;
|
| |
|
| | i2c_close(pigpio_pi, handle);
|
| | }
|
| |
|
| |
|
| | char wireread() {
|
| | char wbuffer[2];
|
| | if wireins(wbuffer, 1) return wbuffer[1]; else return 0;
|
| | }
|
| |
|
| | #else
|
| | void wirebegin() {}
|
| | uint8_t wirestat(uint8_t c) {return 0; }
|
| | void wireopen(char s, uint8_t m) {}
|
| | uint16_t wireins(char *b, uint8_t l) { b[0]=0; return 0; }
|
| | void wireouts(char *b, uint8_t l) {}
|
| | uint16_t wireavailable() { return 1; }
|
| | int16_t wirereadbyte(uint8_t port) { return 0; }
|
| | void wirewritebyte(uint8_t port, int16_t data) { return; }
|
| | void wirewriteword(uint8_t port, int16_t data1, int16_t data2) { return; }
|
| |
|
| | char wireread() { return 0; }
|
| | #endif
|
| |
|
| | |
| | |
| | |
| |
|
| | uint8_t radiostat(uint8_t c) {return 0; }
|
| | void radioset(uint8_t s) {}
|
| | uint16_t radioins(char *b, uint8_t nb) { b[0]=0; b[1]=0; return 0; }
|
| | void radioouts(char *b, uint8_t l) {}
|
| | void iradioopen(const char *filename) {}
|
| | void oradioopen(const char *filename) {}
|
| | uint16_t radioavailable() { return 0; }
|
| | char radioread() { return 0; }
|
| |
|
| |
|
| | void sensorbegin() {}
|
| | float sensorread(uint8_t s, uint8_t v) {return 0;};
|
| |
|
| |
|
| | |
| | |
| |
|
| |
|
| | uint8_t pintointerrupt(uint8_t pin) { return 0; }
|
| | void attachinterrupt(uint8_t inter, void (*f)(), uint8_t mode) {}
|
| | void detachinterrupt(uint8_t pin) {}
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| |
|
| | #ifdef SPIRAMSIMULATOR
|
| |
|
| | static int8_t spiram[65536];
|
| |
|
| |
|
| | uint16_t spirambegin() {
|
| | return 65534;
|
| | }
|
| |
|
| |
|
| | void spiramrawwrite(uint16_t a, int8_t c) {spiram[a]=c;}
|
| |
|
| |
|
| | int8_t spiramrawread(uint16_t a) {return spiram[a];}
|
| |
|
| |
|
| |
|
| | void spiram_rwbufferwrite(uint16_t a, int8_t c) {spiram[a]=c;}
|
| |
|
| | int8_t spiram_rwbufferread(uint16_t a) {return spiram[a];}
|
| |
|
| | int8_t spiram_robufferread(uint16_t a) {return spiram[a];}
|
| |
|
| | |
| | |
| | |
| |
|
| | char spistrbuf1[SPIRAMSBSIZE];
|
| | char spistrbuf2[SPIRAMSBSIZE];
|
| | #endif
|
| |
|
| | |
| | |
| | |
| |
|
| |
|
| | #ifdef FASTTICKERPROFILE
|
| | uint32_t lastfasttick = 0;
|
| | uint32_t fasttickcalls = 0;
|
| | uint16_t avgfasttick = 0;
|
| | long devfasttick = 0;
|
| |
|
| | void fasttickerprofile() {
|
| | int delta;
|
| | if (lastfasttick == 0) { lastfasttick=micros(); return; }
|
| | delta=micros()-lastfasttick;
|
| | lastfasttick=micros();
|
| | avgfasttick=(avgfasttick*fasttickcalls+delta)/(fasttickcalls+1);
|
| | fasttickcalls++;
|
| | }
|
| | #endif
|
| |
|
| |
|