Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e3fb56a
Add some base settings
gmondada Jun 2, 2026
f160f47
Add base implementation of wendy_cloud
gmondada May 20, 2026
b029376
Create component wendy_common
gmondada Jun 2, 2026
e77b1f1
Add nanopb component
gmondada Jun 8, 2026
84aa28e
Disable cloud support
gmondada Jun 8, 2026
1bc25db
Add wendy_com component
gmondada Jun 8, 2026
4ba742a
Add wendy_server component
gmondada Jun 8, 2026
d8105a1
Adopt new wendy_com, replacing all uses of the http client component
gmondada Jun 8, 2026
775a3ed
Add Wendy Lite Console, a tool used during development to test the We…
gmondada Jun 8, 2026
e8304d8
wendy_com: Release buffers once disconnected
gmondada Jun 10, 2026
1e8044f
Add wendy_conf partition
gmondada Jun 10, 2026
bb86bbb
wendy_wifi: Get credentials from wendy-conf partition
gmondada Jun 10, 2026
00d6858
wendy_server: Add a default certificate for unauthenticated connections
gmondada Jun 10, 2026
4ef41ce
wendy_server: Implement mTLS
gmondada Jun 10, 2026
2b8e8fe
wendy_server: Update port number
gmondada Jun 10, 2026
bc9c3d7
wendy_cloud: Adopt new provisioning coming from the wendy-conf partition
gmondada Jun 10, 2026
2b63617
Remove old tool for serving the wasm app
gmondada Jun 10, 2026
3be5bc6
Cleanup
gmondada Jun 10, 2026
87487f4
Improve protocol version checks
gmondada Jun 11, 2026
c3defac
wendy_server: Correctly close TLS sockets
gmondada Jun 11, 2026
bf692bb
Merge remote-tracking branch 'origin/main' into gab/mtls
gmondada Jun 11, 2026
9a46752
wendy_server: verify client certificate
gmondada Jun 16, 2026
f678b0e
wendy_server: Temporarily disable EKU checks
gmondada Jun 17, 2026
28976f5
Add tool to read and dump the conf partition
gmondada Jun 17, 2026
465ad6a
wendy_server: Stop logging mTLS client certificates
gmondada Jun 17, 2026
2c481ad
tools: Update console
gmondada Jun 17, 2026
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
9 changes: 9 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"configurations": [
{
"name": "ESP-IDF",
"compileCommands": "${workspaceFolder}/build/compile_commands.json"
}
],
"version": 4
}
9 changes: 9 additions & 0 deletions components/nanopb/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# nanopb runtime — source files are populated by tools/update_protobuf.py
idf_component_register(
SRCS
"pb_common.c"
"pb_encode.c"
"pb_decode.c"
INCLUDE_DIRS
"."
)
Loading
Loading