Skip to content
Chris Petersen edited this page Oct 16, 2014 · 4 revisions

Plugin: rawoutput

The raw data output plug-in saves raw data to a binary file raw.bin. All functions in this file are private and should not be called by an end-user.

Note: This plugin, like all other plugins, will not run if (scheduler-init) and (scheduler-startcase) have not been called.

Requires rawoutput to be listed in the application's PLUGINS file, and scheduler ln_store to be listed in the application's MODULES file.

Examples

Example 1: Store binary recording of pulse oximetry readings.

(set! store (make-store "store"))
(scheduler-startcase store (time->timestamp (current-time)))
(make-instance store "RAWOUT" "rawoutput" '("Source" "RAWPULSEOX"))
(scheduler-init)
Clone this wiki locally