/* v/batz.c ** ** This file is in the public domain. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "all.h" #include "vere/vere.h" /* u3_batz_io_init(): initialize batz timer. */ void u3_batz_io_init(void) { u3_batz* beh_u = &u3_Host.beh_u; uv_timer_init(u3L, &beh_u->tim_u); beh_u->alm = c3n; } /* u3_batz_io_exit(): terminate timer. */ void u3_batz_io_exit(void) { } /* _batz_time_cb(): timer callback. */ static void _batz_time_cb(uv_timer_t* tim_u) { u3_batz* beh_u = &u3_Host.beh_u; if(beh_u->run_w < 1024) { beh_u->run_w++; } u3_lo_open(); { u3v_plan (u3nt(u3_blip, c3__batz, u3_nul), u3nc(c3__wake, u3_nul)); } u3_lo_shut(c3n); } /* u3_batz_io_poll(): update batz IO state. */ void u3_batz_io_poll(void) { u3_batz* beh_u = &u3_Host.beh_u; u3_noun wen = u3v_keep(u3nt(u3_blip, c3__batz, u3_nul)); if ( (u3_nul != wen) && (c3y == u3du(wen)) && (c3y == u3ud(u3t(wen))) ) { c3_d gap_d = u3_time_gap_ms(u3k(u3A->now), u3k(u3t(wen))); gap_d += beh_u->run_w; if ( c3y == beh_u->alm ) { uv_timer_stop(&beh_u->tim_u); } else beh_u->alm = c3y; uv_timer_start(&beh_u->tim_u, _batz_time_cb, gap_d, 0); } else { if ( c3y == beh_u->alm ) { uv_timer_stop(&beh_u->tim_u); } beh_u->alm = c3n; } u3z(wen); }