README
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:1k
源码类别:

操作系统开发

开发平台:

DOS

  1. These programs are designed for JK Microsystem's uFlash embedded
  2. processor with it's matching A/D and temperature probes.
  3. THERM.EXE
  4.     The example demonstrates:
  5.     - basic interfacing with the A/D board
  6.     - integer temperature calcuations in both Fahrenheit and Celcius degrees
  7.     - fixed point decimal calculations in both Fahrenheit and Celcius degrees
  8.     Note, the uFlash board does not have a math co-processor (80387), and
  9.     Borland's floating point emulation libaries are not compatible with
  10.     pre-emptive threading.  So this example uses eRTOS's fixed point
  11.     eMATH functions when accuracy is needed.
  12. TSCOPE.EXE
  13.     (TSCOPE.C, WEBPART.C)
  14.     This example builds on THERM to create a web server which doles up
  15.     Dynamic HTML with the current temperature, and presents a graph of
  16.     recent temperature readings.
  17.     For this example, all calculations are done in integer math.
  18. Note:
  19.   The LDRIVER.* files are slightly reworked versions of JK Micro's DRIVER.*
  20.   files.  However, DRIVER.ASM was hard coded for small model, so LDRIVER.ASM
  21.   is adjusted to use large model stacks and large model parameter passing.