| 0/2847 |
Simon Nield [simon.nield at quantel.com] says:
one thing to bear in mind when accessing the parallel port in epp mode is that it _does_ drop back into spp mode between reads / writes, so make sure you set up the spp mode correctly first.I have pasted a small code snippet below that worked fine in Win95.
The hardware end of this code was an Altera 7k128 in case you were wondering.
unsigned short PORT=0x378; // parallel base port typedef struct FooCtrl { short position; } FooCtrl; void TalkToFooCtrl( FooCtrl *testboard, unsigned short base, short pwm) { unsigned short address_port, data_port, control_port; short position_delta; control_port = base + 2; // SPP control port address_port = base + 3; // EPP address port data_port = base + 4; // EPP data port _outp(control_port, 0x00); // ensure strobes deasserted in between EPP transfers _outp(address_port, pwm); _outp(data_port, pwm >> 8); position_delta = _inp(data_port); position_delta = position_delta << 8; position_delta += _inp(address_port); testboard->position = position_delta; }
| file: /techref/io/parallel/1284/ecp-ccode-sn.htm, 1KB, , updated: 2002/9/24 06:03, local time: 2008/7/4 08:35,
38.103.63.16:LOG IN
|
| ©2008 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? Please DO link to this page! Digg it! <A HREF="http://www.piclist.com/techref/io/parallel/1284/ecp-ccode-sn.htm"> IEEE-1284 / Centronix / Parallel Port</A> |
| Did you find what you needed? |
|
o List host: MIT, Site host massmind.org, Top posters @20080704 Apptech, Jinx, Xiaofan Chen, David VanHorn, Alan B. Pearce, Bob Axtell, William \Chops\ Westfield, Cedric Chang, Gerhard Fiedler, bean, * Page Editors: James Newton, David Cary, and YOU! * Roman Black of Black Robotics donates from sales of Linistep stepper controller kits. * Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters. * Monthly Subscribers: Shultz Electronics, Larry Williams, David VanHorn, Bryan Whitehouse, Timothy Weber, David Challis. Peter Todd. on-going support is MOST appreciated! * Contributors: Neil Narwani, David Cary, Elemer AM Nyiry, Philip J Taylor, Gus Calabrese of Omegadogs.com, Gautama Venegas, Patrick B. Murphy, William Chops Westfield, Peter Todd, Leslie Ellis |
|
.