Contents
Tags
Android Arduino ARM ATmega ATmega2560 avr C++ C++0X C++1X C++17 CH340 CH341 cojson configuration Controllino Cortex-M0 Cortex-M4 DLNA embedded embedded systems ESP8266 FTDI HTTP json JSON-RPC JSON for embedded systems json parser json serializer logging low end MCU MCU minidlna OpenIndiana Particle Photon PL2303 PSoC REST SFINAE template UART USB USB descriptor template USBUART vlcArchives
- October 2024
- December 2023
- January 2020
- March 2019
- October 2018
- September 2018
- April 2018
- December 2017
- April 2017
- March 2017
- June 2016
- October 2015
- April 2015
- March 2015
- November 2014
- November 2012
- March 2010
- December 2009
- November 2009
- July 2009
- March 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- April 2003
Categories
Meta
Tag Archives: Cortex-M4
COJSON library for Arduino
Friday, October 19, 2018
COJSON library is also available as Arduino Studio .ZIP library: cojson.zip.
μcuREST Tutorial
Monday, April 17, 2017
Getting Started With μcuREST you can implement REST services and/or a web application for communication with your embedded application. First you’ll need to decide which resources (variables or functions of your application) you wish to expose via HTTP and assign URI to those resources. Then define a μcuRESTresource map, binding URI names to the resources. […]
μcuREST – an application server for constrained platforms
Tuesday, March 14, 2017
Introduction μcuREST (micurest) is a C++11 library for implementing REST services on constrained platforms, such as bare metal applications on low-end MCUs. The library is platform-agnostic, zero-allocation, and has almost no external dependencies. It allows mapping hierarchically organized URIs to C/C++ variables, constants and methods, and exposing the URIs via HTTP protocol.
cojson tutorial v2.0
Monday, October 19, 2015
1. Getting Started For a quick start the easiest way is using codegen. Paste you JSON into the left editor, hit button Run and collect results in the right editor. Adjust options if necessary and build with your application. With instructions, given in this tutorial, you may manually craft or adjust auto-generated structure of your […]
cojson – a JSON parser for constrained platforms
Friday, October 16, 2015
Introduction cojson is a C++ pull-type JSON parser/serializer for constrained platforms, such as bare metal applications on low-end MCUs. It does not use memory allocation and has almost no external dependencies. It is not intrusive – it neither forces nor implies any particular design of the application. Instead it adapts to fit any existing application […]