Add VS Code config example to README.md

This commit is contained in:
Lexi / Zoe 2021-04-04 02:52:07 +02:00
parent bc849d9662
commit 3a07b3ab6f
Signed by: binaryDiv
GPG Key ID: F8D4956E224DA232
1 changed files with 16 additions and 3 deletions

View File

@ -1,5 +1,18 @@
# eeprom-programmer
Programming tool for parallel EEPROM chips, based on a ATmega16.
Only supports AT28C256 EEPROM chips as of now.
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"]
}