wonx_configure.h 731 B

1234567891011121314151617181920212223242526
  1. /* configure.h for configuration of wonx */
  2. #ifndef _WONX_wonx_configure_h_INCLUDED_
  3. #define _WONX_wonx_configure_h_INCLUDED_
  4. #include "wonx_include/libwwc.h"
  5. /* デフォルトのアーキテクチャ */
  6. #define WONX_DEFAULT_ARCH HARDARCH_WSC
  7. /* WonX でのタイマ割り込みの周期(単位はミリ秒) */
  8. #define WONX_TIMER_INTERVAL 100 /* 0.1 秒 */
  9. /* HBLANK, VBLANK 割り込みのデフォルトのインターバル(0.1秒単位) */
  10. #define WONX_HBLANK_INTERVAL ( 3 * 10) /* 3 秒毎 */
  11. #define WONX_VBLANK_INTERVAL (20 * 10) /* 20 秒毎 */
  12. /*
  13. * シリアル通信時のタイムアウト時間の単位
  14. * (単位はミリ秒だが,そんなに精度は無い)
  15. */
  16. #define WONX_SERIAL_PORT_TIMETICKS 100 /* 1/10 秒単位 */
  17. #endif /* _WONX_wonx_configure_h_INCLUDED_ */
  18. /* End of wonx_configure.h */