{"id":36624036,"url":"https://github.com/memfault/memfault-zephyr-http-example","last_synced_at":"2026-01-12T09:29:50.871Z","repository":{"id":226267203,"uuid":"765888050","full_name":"memfault/memfault-zephyr-http-example","owner":"memfault","description":null,"archived":false,"fork":false,"pushed_at":"2024-09-04T21:11:30.000Z","size":50,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":12,"default_branch":"main","last_synced_at":"2024-09-07T06:13:02.077Z","etag":null,"topics":["memfault","nxp","sample","zephyr"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/memfault.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-01T20:21:33.000Z","updated_at":"2024-09-04T21:11:34.000Z","dependencies_parsed_at":"2024-03-06T19:10:43.494Z","dependency_job_id":"3326073e-f3e9-47ab-95e6-495866cd1c51","html_url":"https://github.com/memfault/memfault-zephyr-http-example","commit_stats":null,"previous_names":["memfault/memfault-zephyr-http-example"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/memfault/memfault-zephyr-http-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/memfault%2Fmemfault-zephyr-http-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/memfault%2Fmemfault-zephyr-http-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/memfault%2Fmemfault-zephyr-http-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/memfault%2Fmemfault-zephyr-http-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/memfault","download_url":"https://codeload.github.com/memfault/memfault-zephyr-http-example/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/memfault%2Fmemfault-zephyr-http-example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28337723,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["memfault","nxp","sample","zephyr"],"created_at":"2026-01-12T09:29:50.304Z","updated_at":"2026-01-12T09:29:50.867Z","avatar_url":"https://github.com/memfault.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Memfault Zephyr Http Example\n\nA basic HTTP-enabled Memfault example application.\n\nCurrently supporting the following boards:\n\n- MIMXRT1024-EVK\n- [WIP: no ethernet board support merged yet] FRDM-MCXN947\n\n## Building\n\n### Prerequisites\n\n1. A [Zephyr build\nenvironment](https://docs.zephyrproject.org/latest/getting_started/index.html),\nused to build and flash the firmware\n\n2. A [Memfault account](https://mflt.io/create-key/nxp-imx-rt) and a [project\n   key](https://mflt.io/project-key)\n\n### Initialize the project\n\n```bash\n# create a new zephyr workspace folder\n❯ mkdir memfault-zephyr-http-example \u0026\u0026 cd memfault-zephyr-http-example\n❯ git clone https://github.com/memfault/memfault-zephyr-http-example.git\n❯ west init -l memfault-zephyr-http-example\n❯ west update\n```\n\n### Build\n\nEither add this line to [`prj.conf`](prj.conf):\n\n```shell\nCONFIG_MEMFAULT_PROJECT_KEY=\"MEMFAULT_PROJECT_KEY\"\n```\n\nOr set it as a build argument:\n\n```bash\n❯ west build --pristine=always --board mimxrt1024_evk \\\n  memfault-zephyr-http-example \\\n  -- \\\n  -DCONFIG_MEMFAULT_PROJECT_KEY=\\\"MEMFAULT_PROJECT_KEY\\\"\n```\n\nTo build for the FRDM-MCXN947 board:\n\n```bash\n❯ west build --pristine=always -b frdm_mcxn947/mcxn947/cpu0 \\\n  memfault-zephyr-http-example \\\n  -- \\\n  -DCONFIG_MEMFAULT_PROJECT_KEY=\\\"MEMFAULT_PROJECT_KEY\\\"\n```\n\n## Flashing\n\nThe MIIMXRT1024-EVK board has an onboard debugger that's CMSIS-DAP compatible.\nYou can also set a jumper to use an external debugger connecting to the SWD\nheader (J55).\n\nDepending on what debugger is used, the flash command will change:\n\n```bash\n# default is J-Link\n❯ west flash\n# to use pyocd to attach to the CMSIS-DAP debugger\n❯ west flash --runner pyocd\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmemfault%2Fmemfault-zephyr-http-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmemfault%2Fmemfault-zephyr-http-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmemfault%2Fmemfault-zephyr-http-example/lists"}