Added service function. (A service function dumping information for debugging, Added service function for screen drawing ON / OFF control) Specifically, see README. Make the object's destructor called from bios_exit () Add appropriate Destroy function to each object. Delete objects properly We have checked the termination process as a whole, as done. Fix to accept interrupts even during key_wait (). (Previously, only key input was accepted) Some timer interrupts are improved. (UNIXTimer.c) Change the wonx_include directory to wonx. Changed to search the full path to perl automatically and insert it at the beginning of perl script. Makefile review, improvement. Changed ON / OFF of screen drawing to switch according to display level. (See README for details.) Also change to display level lowered by F9 and display level raised by F10. In accordance with that, we have reviewed a part of ON / OFF part of drawing and key input event processing. Fixed to display message when pressing key. Obj ObjListData_GetPrev (ObjListData data) Obj ObjListData_GetNext (ObjListData data) To ObjListData ObjListData_GetPrev (ObjListData data) ObjListData ObjListData_GetNext (ObjListData data) Fixed to. Added install, uninstall target to Makefile. Fixed challsrc.sh. Version 2.2 - from wonx-2.2.tar.gz
31 lines
801 B
C
31 lines
801 B
C
/* configure.h for configuration of wonx */
|
|
|
|
#ifndef _WONX_wonx_configure_h_INCLUDED_
|
|
#define _WONX_wonx_configure_h_INCLUDED_
|
|
|
|
#include "wonx/libwwc.h"
|
|
|
|
/* デフォルトのアーキテクチャ */
|
|
#define WONX_DEFAULT_ARCH HARDARCH_WSC
|
|
|
|
/* WonX でのタイマ割り込みの周期(単位はミリ秒) */
|
|
#if 1
|
|
#define WONX_TIMER_INTERVAL 100 /* 0.1 秒 */
|
|
#else
|
|
#define WONX_TIMER_INTERVAL 1 /* デバッグ用(0.001 秒) */
|
|
#endif
|
|
|
|
/* HBLANK, VBLANK 割り込みのデフォルトのインターバル(0.1秒単位) */
|
|
#define WONX_HBLANK_INTERVAL ( 3 * 10) /* 3 秒毎 */
|
|
#define WONX_VBLANK_INTERVAL (20 * 10) /* 20 秒毎 */
|
|
|
|
/*
|
|
* シリアル通信時のタイムアウト時間の単位
|
|
* (単位はミリ秒だが,そんなに精度は無い)
|
|
*/
|
|
#define WONX_SERIAL_PORT_TIMETICKS 100 /* 1/10 秒単位 */
|
|
|
|
#endif /* _WONX_wonx_configure_h_INCLUDED_ */
|
|
|
|
/* End of wonx_configure.h */
|