From 3a07b3ab6f43877f689c2e29ea248e9872f9d30e Mon Sep 17 00:00:00 2001 From: binaryDiv Date: Sun, 4 Apr 2021 02:52:07 +0200 Subject: [PATCH] Add VS Code config example to README.md --- README.md | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 43ef080..5d01009 100644 --- a/README.md +++ b/README.md @@ -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"] + }