a-p-prog
8-bit PIC programmer built around AVR/Arduino platform. Just because I can.
File Explorer
- sdcc_blink.c
- pp.ino
- approg.brd
- approg.sch
- approg.do
- approg.dri
- approg.GBL
- approg.GBO
- approg.GBP
- approg.GBS
- approg.GML
- approg.gpi
- approg.GTL
- approg.GTO
- approg.GTP
- approg.GTS
- approg.TXT
- approg.sch.pdf
- BOM.csv
- .gitignore
- pp3.c
- pp3.exe
- pp3_devices.dat
- .gitattributes
- .gitignore
- changelog.txt
- LICENSE.md
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Link
Example
Command Glossary
Commands referenced in this DOCs, explained below.
gcc
View Details ▼
gcc
Preprocess and compile C and C++ source files, then assemble and link them together.
Part of GCC (GNU Compiler Collection).
gcc {{path/to/source1.c path/to/source2.c ...}} {{[-o|--output]}} {{path/to/output_executable}}
Compile multiple source files into an executable:
gcc {{path/to/source.c}} -Wall {{[-o|--output]}} {{output_executable}}
Activate output of all errors and warnings:
gcc {{path/to/source.c}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{path/to/output_executable}}
Show common warnings, debug symbols in output, and optimize without affecting debugging:
// repository documentation
Was this content helpful?
(0 ratings)
