Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

access point site #24

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[target.'cfg(any(target_arch = "xtensa", target_arch = "riscv32"))']
runner = "espflash flash --monitor"
runner = "espflash flash --monitor -T partitions.csv"


[env]
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,14 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install bun dependencies
run: bun install
- name: Setup Rust
uses: esp-rs/[email protected]
with:
default: true
buildtargets: esp32
ldproxy: false
- name: Enable caching
uses: Swatinem/rust-cache@v2
Expand Down
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@ target/
**/.DS_Store

# environment variables/secrets
*.env
*.env

# build output
dist/

# nodejs build artifcats
node_modules/
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
{
"version": "0.2.0",
"configurations": [

{
"type": "lldb",
"request": "launch",
"name": "Cargo launch",
"cargo": {
"args": [
"+esp",
"run",
"--target",
"riscv32imc-unknown-none-elf",
"--features",
"esp32c3"
]
},
"args": []
},

{
"name": "Wokwi GDB",
"type": "lldb",
Expand Down
Loading
Loading