Development tools for Atmel AVR ... Free for sure ...
http://sourceforge.net/projects/winavr/files/WinAVR/20100110/WinAVR-20100110-install.exe/download
Monday, April 19, 2010
Thursday, April 15, 2010
Service manuals, schematics, documentation, programs, electronics, hobby ....
Service manuals, schematics, documentation, programs, electronics, hobby ....
http://www.eserviceinfo.com/download.php?fileid=21614
http://www.eserviceinfo.com/download.php?fileid=21614
RS485 to RS232 converter
http://aquaticus.info/rs485_to_rs232
Popular chip MAX232 is used to convert RS232 signals from/to TTL level. MAX485 converts TTL level signals to RS485 standard. RTS line is used to change transmission mode of MAX485. RTS signal is first converted to TTL level by MAX232 then connected to DE and RE/ pins.
Popular chip MAX232 is used to convert RS232 signals from/to TTL level. MAX485 converts TTL level signals to RS485 standard. RTS line is used to change transmission mode of MAX485. RTS signal is first converted to TTL level by MAX232 then connected to DE and RE/ pins.
Monday, April 12, 2010
Friday, April 9, 2010
Thursday, April 8, 2010
HOWTO: Specify Serial Ports Larger than COM9
CreateFile() can be used to get a handle to a serial port. The "Win32 Programmer's Reference" entry for "CreateFile()" mentions that the share mode must be 0, the create parameter must be OPEN_EXISTING, and the template must be NULL.
CreateFile() is successful when you use "COM1" through "COM9" for the name of the file; however, the message is returned if you use "COM10" or greater.
If the name of the port is \\.\COM10, the correct way to specify the serial port in a call to CreateFile() is as follows: NOTES: This syntax also works for ports COM1 through COM9. Certain boards will let you choose the port names yourself. This syntax works for those names as well.
http://support.microsoft.com/kb/115831
CreateFile() is successful when you use "COM1" through "COM9" for the name of the file; however, the message
INVALID_HANDLE_VALUE
If the name of the port is \\.\COM10, the correct way to specify the serial port in a call to CreateFile() is as follows:
CreateFile(
"\\\\.\\COM10", // address of name of the communications device
fdwAccess, // access (read-write) mode
0, // share mode
NULL, // address of security descriptor
OPEN_EXISTING, // how to create
0, // file attributes
NULL // handle of file with attributes to copy
);
http://support.microsoft.com/kb/115831
Tuesday, April 6, 2010
Configuring a Communications Resource [ Serial Port On Winxp C programming ]
- Setting up serial port using C on Window XP .. @ Windows ...
http://msdn.microsoft.com/en-us/library/Aa363201
http://msdn.microsoft.com/en-us/library/Aa363201
Friday, April 2, 2010
Subscribe to:
Posts (Atom)
Proxmox installation display out of range
Reference: https://forum.proxmox.com/threads/proxmox-ve-screen-out-of-range.131297/
-
Original Source :: http://en.irfanview-forum.de/viewtopic.php?t=490 /one - force 'Only one instance' /fs - force Full Screen displa...
-
Original Source:: http://www.zytrax.com/tech/pc/serial.html Tech Info - USB and Firewire USB and FireWire (IEEE 1394a and b) represent the...