Tagged: esp8266

New libraries: ESP8266 AT, GSM AT and GPS NMEA parsers 18

New libraries: ESP8266 AT, GSM AT and GPS NMEA parsers

In the past few weeks, I was working on 3 new generic libraries, specially intended for embedded systems. Libraries are: ESP8266 AT parser version 2 GSM AT parser for SIMcom modules (SIM800, SIM900, etc) GPS NMEA parser for parsing NMEA statements from GPS output Each library is written in a way where user must prepare additional coding to support arhitecture where it is used. They are written in ANSII C and will work on any compiler which is in ANSII...

ESP8266 AT Commands parser 6

ESP8266 AT Commands parser

ESP8266 AT Commands parser is a generic, platform independent, library for communicating with ESP8266 Wi-Fi module using AT commands. Module is written in ANSI C (C89) and is independent from used platform. It’s main targets are embedded system devices like ARM Cortex-M, AVR, PIC and so on. Features Platform independent with separate low level functions for used platform with some basic configurations, Written in ANSI C (C89), Supports full communication with ESP8266 and AT commands software provided by Espressif systems,...

ESP8266 AT parser library ALPHA version released 5

ESP8266 AT parser library ALPHA version released

After some time, I have uploaded first release “ALPHA” for testing. Library is not public, but it is precompiled for GCC and MDK-ARM for STM32F4xx only.   To see, how to use library, download my Github repository and open project in keil uVision. If you don’t have it, you can use main.c to see how to use library. Notes HEAP must be at least 16k for proper working at the moment STACK must be at least 1k for proper working I...