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: C++1X
USB++ a C++14 template library for handy descriptor definition
Tuesday, April 3, 2018
Overview USB++ (usbplusplus) is a C++14 template library that gives the user a simple and error-prone way for defining USB descriptors, suitable for embedded projects.
Cascaded Configuration Sets for C++1y
Tuesday, April 4, 2017
Introduction Preprocessor macros are widely used in C++ for configuring reusable modules, targeting different platforms or working around compiler’s differences. Such approach is inherited from C and used even in modern pure C++ libraries, such as boost. The aim of this work is to research on suitability of C++ templates and language features for establishing […]
μ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.
Implementing C++ designated initializers with templetized constructor
Monday, November 10, 2014
C99 facilitates support designated initializers: I found this handy feature very useful, since it does not require remembering order of the struct fields and simplifies refactoring and/or evolving of the existing code. C++0X and C++1X does not allow this (please follow this link for more details) This page has inspired me on a practical solution […]