Coder Social home page Coder Social logo

thegabriele97 / -rtos-morse-based-twitter Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 2.03 MB

An example of real time application for Embedded Systems. Based on TrampolineOS and Arduino

License: GNU General Public License v3.0

Makefile 0.85% Python 23.38% C 35.58% C++ 23.73% Objective-C 8.31% Assembly 8.15%

-rtos-morse-based-twitter's Introduction

Morse-based Twitter

An example of real time application for Embedded Systems

Developed by La Greca Salvatore Gabriele (@thegabriele97)

forthebadge made-with-c ForTheBadge built-with-love

Ask Me Anything ! GPL license Open Source? Yes!


The “Morse-based twitter” is an example of a real time application for Embedded Systems.

The behaviour of this application is implemented using TrampolineOS, an open-source implementation of the OSEK/VDX real time operating system.

TrampolineOS supports different kind of real hardware solutions and, for this situation, I choose to develop, run and test it on an Arduino Nano (that has on board the same microcontroller of the Arduino UNO, the one officially supported by this implementation of the RTOS). Because of this choice (regarding the work on a real hardware and not only via software), the source code contains some elements that are hardware-dependent. I had, in fact, to manage LEDs and there are some serial output strings for debugging purpose.

An overview of the implemented architecture

In order to satisfy correctly the requested behaviour of the application, the first thing to do is to organize a suitable architecture that can describe it correctly.

Thanks to the OIL file (that in an OSEK/VDX RTOS it’s used as preliminary configuration of the Operating System), I can setup the general architecture of the implementation. The most important elements specified in this file are one Task, two Alarms and an Event.

The single Task is:

  • TaskTwitterer: it is an endless-loop tasks that manages inter-messages pause and the right message to display. For each message, it calls a function that manages the selected message such as conversion to morse code, display timing, bit timing, inter-bit pauses and so on and so forth. It continuously checks if the end flag is set or if reached the end of the message. If it is, the control is returned to TaskTwitterer.

The two Alarms are:

  • StopDisplay: after 180 seconds since its activation, a callback is called whose action is to properly set the end flag variable.
  • GeneralOneShot: It's used both for bit timing (rising an event each 100 ms) and for inter-message pause long 0.5 seconds. It fires the event EVTGeneralOneShot.

The source code is divided into different parts:

  • code.cpp: contains routines for setting up the system like serial port baud rate, the pin to use in order to drive the led and so on and so forth. Declares the array of messages to display and other useful variables.
  • task.cpp: contains the main task routine. Here we have the core of the application.
  • callback.cpp: meant to store callbacks’ code, in this project we have only one callback and its code is described here.
  • comm_fnct.h: header file that contains all the main macros, type definitions, constant definitions and useful function declarations.
  • comm_fnct.cpp: source code of other functions (different from tasks and callbacks code). Here we found the definition of the function for displaying the message, single bit displaying and the Morse code conversion utility.

A few details about Alarms and Counters

Regarding the management of the StopDisplay alarm, TrampolineOS for Arduino already contains a definition of a counter called SystemCounter, without the need to specify it in the OIL file. The problem with this thing is that the default maximum value of the counter is the maximum value representable on 16 bits.

In order to have a count of 180.000 ticks more or less (please refer directly to the source code in order to know exactly how much ticks are needed to count for 180 seconds), we need more than 16 bits of storage for the counter. To resolve this problem, a re-defined SystemCounter is specified with a maximum value on 24 bits that is automatically converted into an uint32_t variable.

Another important aspect to take into account is the duration of a tick. In fact, according to TrampolineOS documentation, for an Alarm based on SystemCounter a duration of 1000 ticks is equal to 1024 ms. For this way, a properly manual conversion needs to be made in order to set correctly the various constant values described in the source code.

This is due to the use of Timer0_OVF interrupt, generated by the main Atmega 328p’s timer. By default, it’s set with a prescaler of 64. The internal clock is 16 Mhz and Timer0 is based on a register of 8 bits. This means that we count up from 0 to 255 with a frequency of 250 Khz. Doing a few calculations, we discover that the frequency of the interrupt is about 976.6 Hz, means that every 1024 us we have a Timer0_OVF interrupt. It’s better to not change this configuration because it’s the same timer used by other predefined Arduino function like millis() and micros().

Task synchronization and events timing

The task synchronization and all the application timing are accomplished through the use of Events or Call-backs set by Alarms. In order to have a correct timing and avoid time drifts, all the Alarms that manage those Events are restarted before taking important actions.

Using micros() to measure delays with a precision of 4 us, is possible to compute relative errors in respect of the specifications of the application. In the 100 ms of bit timing, there is a mean value error of 0.35%. In the 500 ms pause, there is an error of 0.06%. In the 180 s pause, there is an error of 0.0175%.

The serial port

The serial port is configured, so it’s possible to use it in order to give a look into the actions that the program is doing. To be more precisely, the output of the serial port describes which message is under work and how much time it takes.

This is mainly used for debug purpose and to check if the system is working correctly. To enable It, please add the option “CFLAGS = "-D DEBUG"” in the OIL file. Please note that with this option enabled, the overall size of the program will be larger.

Memory occupation

The compiled program is not too much big. From a static analysis, the code is large about 7.59 KB and data (that is loaded into RAM during the boot) is large about 0.84 KB (this can be different depends on the compiler used or if there is a change on the source code but approximately this is the correct value). The code is stored in the Arduino UNO’s 32 KB flash memory.

To be more precise, 7124 bytes are occupied by the .text segment, 652 bytes are occupied by the .data segment, and 213 bytes by the .bss segments. The Program size is computed as .text + .data, while the Data size is computed as .data + .bss.

As reference point for memory usage, a dummy project was taken under consideration during the development. This project contains only a task declared into the .OIL configuration file and the Task has an empty body. This means a starting point of 5666 bytes, 258 bytes and 411 bytes respectively for .text, .data and .bss.

A particular attention was demanded to RAM occupation (only 2 KB of SRAM are available in the Arduino UNO) during the write of the source code. In fact, all the variables used are of the minimum needed size (this is accomplished using the stdint.h library which defines the exact byte size of each variable type).

A look-up table is used to encode a character into Morse code. All the character translations are stored as bits (0b10 for a dot, 0b1110 for a dash) with a NRZ encoding. They are stored as stream of bits in a uint16_t variable for each one, and they are terminated by a 1. The biggest encoded character is 15-bit long +1 as termination.

-rtos-morse-based-twitter's People

Contributors

thegabriele97 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.