eeprom-programmer/README.md

19 lines
439 B
Markdown

# eeprom-programmer
Programming tool for parallel EEPROM chips, based on a ATmega16.
Only supports AT28C256 EEPROM chips as of now.
## Development
### VS Code configuration
Put these lines in `.vscode/settings.json` to enable correct linting and autocompletion.
{
"C_Cpp.default.cStandard": "c11",
"C_Cpp.default.compilerPath": "/usr/bin/avr-gcc",
"C_Cpp.default.compilerArgs": ["-mmcu=atmega16a"]
}