JVM Languages
rtlp1.txt
Associated article: Real-time Signal Analysis & Real-Time Linux: Part 1
Tags: JVM Languages
Published source code accompanying the multi-part article by Matt Sherer in which shows how you do hard real-time signal acquisition, controlling it from a normal Java GUI application.
Real-Time Signal Analysis & Real-Time Linux: Part 1
by Matt Sherer
Listing One
struct command {
int signal_hz;
int noise_hz;
int sample_hz;
} ;
static pthread_t signal_gen_t;
static pthread_t sampler_t;
static int sampled_fd;
static int ...


