diff options
author | Ayke van Laethem <[email protected]> | 2020-08-06 23:28:45 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2020-08-31 09:02:23 +0200 |
commit | 3ee47a9c1b0787e567d7af0f661cf02b8b5d5aed (patch) | |
tree | a8447560da0c9059b5e163d1668b52996e9c4da6 /.gitignore | |
parent | da7db81087d8326c887391b58794d3bea1cae6bc (diff) | |
download | tinygo-3ee47a9c1b0787e567d7af0f661cf02b8b5d5aed.tar.gz tinygo-3ee47a9c1b0787e567d7af0f661cf02b8b5d5aed.zip |
esp: add support for the Espressif ESP32 chip
This is only very minimal support. More support (such as tinygo flash,
or peripheral access) should be added in later commits, to keep this one
focused.
Importantly, this commit changes the LLVM repo from llvm/llvm-project to
tinygo-org/llvm-project. This provides a little bit of versioning in
case something changes in the Espressif fork. If we want to upgrade to
LLVM 11 it's easy to switch back to llvm/llvm-project until Espressif
has updated their fork.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 760bbf0a1..4d0f5f6ff 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ docs/_build src/device/avr/*.go src/device/avr/*.ld src/device/avr/*.s +src/device/esp/*.go src/device/nrf/*.go src/device/nrf/*.s src/device/nxp/*.go |