General discussions about V-USB, our firmware-only implementation of a low speed USB device on Atmel's AVR microcontrollers
-
padidafzar
- Posts: 6
- Joined: Tue Jun 10, 2008 9:54 am
Post
by padidafzar » Tue Jun 10, 2008 10:17 am
ppppppppppppp
Last edited by
padidafzar on Sun Sep 21, 2008 9:17 am, edited 1 time in total.
-
christian
- Objective Development
- Posts: 1443
- Joined: Thu Nov 09, 2006 11:46 am
Post
by christian » Tue Jun 10, 2008 8:31 pm
For access to the EEPROM, see the header avr/eeprom.h in avr-libc. Use e.g. eeprom_write_byte() and eeprom_read_byte().
-
padidafzar
- Posts: 6
- Joined: Tue Jun 10, 2008 9:54 am
Post
by padidafzar » Sat Jun 14, 2008 12:07 pm
pppppppp
Last edited by
padidafzar on Sun Sep 21, 2008 9:26 am, edited 2 times in total.
-
sonicss
- Posts: 5
- Joined: Tue Jun 10, 2008 5:15 pm
Post
by sonicss » Sun Jun 15, 2008 1:28 pm
of course not. u can't include avr/eeprom.h in your delphi or VC++ project to access eeprom. this head file is for gcc compiler.
-
padidafzar
- Posts: 6
- Joined: Tue Jun 10, 2008 9:54 am
Post
by padidafzar » Sun Jun 15, 2008 3:16 pm
pppppppppp
Last edited by
padidafzar on Sun Sep 21, 2008 9:27 am, edited 1 time in total.
-
christian
- Objective Development
- Posts: 1443
- Joined: Thu Nov 09, 2006 11:46 am
Post
by christian » Sun Jun 15, 2008 8:06 pm
You need to write a driver on the device side which makes the EEPROM available to the host. See the Automator project for an example how this can be done.