rtlcam.txt
Associated article: Two-Axis, Real-Time Camera Control
Tags:
Published source code accompanying the article by Cort Dougan in which he presents RTLinux-based software for viewing live images and controlling a servo-motor driven, dual- axis mounted camera via a web page. Also see RTLCAM.ZIP.
Two-Axis Real-Time Camera Control
by Cort Dougan
Listing One
int init_module(void)
{
if (rtl_register_dev("/dev/lpt0", &rtl_par_fops) )
{
printk("Unable to install drivern");
return - EIO;
}
return 0;
}
void cleanup module(void)
{
...


