# esp_usrsctp — get_started Minimal sanity-check application for [`esp_usrsctp`](https://github.com/vikramdattu/esp_usrsctp). Calls `usrsctp_init()` / `usrsctp_finish()`. Used by the repo's CI to verify the component compiles and links across supported targets; also a copy-paste starting point. ## Build ```bash idf.py set-target esp32p4 # or esp32, esp32s3, esp32c3, esp32c6 idf.py build idf.py -p <PORT> flash monitor ``` The example consumes the parent component via `override_path: ../../..` in `main/idf_component.yml`, so it always tracks the in-tree source. Replace with a registry version to consume the published component instead: ```yaml dependencies: vikramdattu/esp_usrsctp: "^1.0.0" ```
To create a project from this example, run:
idf.py create-project-from-example "vikramdattu/esp_usrsctp=1.0.0:get_started"