Testing out the PPD42 Air Quality Sensor, with an MSP430 Launchpad and graphing the data with GNUplot.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.3 KiB

5 years ago
  1. BeOS serial support is in the early stages. configure and the resulting
  2. Makefile should work properly. Initial readbyte/writebyte type support is
  3. included.
  4. Test.java in contrib/ works on BeOS.
  5. rxtx.proj in contrib/ is included for people using the IDE that BeOS uses.
  6. Initially we tried to use the standard POSIX functions to get BeOS working. It
  7. became obvious the BeOS kernel API (See Serial.h on BeOS) would have to be
  8. used to get Events working. With simple build and read/write functionality
  9. we are releasing the work in case anyone wants to help contribute to the
  10. project.
  11. src/SerialImp.cpp is the BeOS support.
  12. List of functions ported: (Thanks to Brian Hindman)
  13. =========================
  14. RXTXPort.open
  15. RXTXPort.nativeClose
  16. RXTXPort.nativeSetSerialPortParams
  17. translate_speed
  18. translate_data_bits
  19. translate_stop_bits
  20. translate_parity
  21. RXTXPort.writeByte
  22. RXTXPort.writeArray (untested)
  23. RXTXPort.drain
  24. RXTXPort.isDSR
  25. RXTXPort.isCD
  26. RXTXPort.isCTS
  27. RXTXPort.isRI
  28. RXTXPort.isRTS (not available in BeOS)
  29. RXTXPort.setRTS
  30. RXTXPort.setDSR (not available in BeOS)
  31. RXTXPort.isDTR (not available in BeOS)
  32. RXTXPort.setDTR
  33. RXTXPort.readByte (untested)
  34. RXTXPort.nativeavailable
  35. RXTXPort.setflowcontrol
  36. get_java_var
  37. throw_java_exception
  38. report