Skip to content

Releases: dashee/dashee

Re-engineering

28 Aug 10:10
Compare
Choose a tag to compare

The new package holds the concept of Vehicle as a default to allow flexibility and splits out the extra packages so they are not all in one place.

3 Degrees of Freedom

27 Dec 14:39
Compare
Choose a tag to compare

Added accelerometer classes and the I2C interfaces required to communicate with 9DOF stick. With this there are also a few playground scripts added to test the 9DOF stick.

Bug fixed the ticker timer for the servod program. It is now optimized for the Pi to handle the correct amount of tasks per second.

The tests have been improved to fit the vehicle model correctly, and added a few QuadX tests.

Updated Buffer, and created tests

14 Dec 22:24
Compare
Choose a tag to compare

The buffer class now uses a class instead of a std::queue. It implements a next function which runs the std::queue.front() and std::queue.pop() before returning the value of front element.

Also added a fix to wait after the GPIO reset, In non verbose mode it didn't give enough time for the board to reset, and therefore never work in non verbose mode

Bug Fixes with UART

13 Dec 01:31
Compare
Choose a tag to compare
  • UART now sleep on board reset so in non verbose mode getError does not timeout
  • demo.html now uses a smaller width and height support smaller screens

Thread Scopes and SIGHUPS

08 Dec 23:48
Compare
Choose a tag to compare

Segmented the functionality in Containers and Controllers

  • Added Thread::Scope for RAII protection
  • Moved all the loading into the Container
  • Added a small Controller which holds an instance of a container
  • Added SIGHUP reload in threadStepController thread
  • Automation virtual test environment added

Main program uses threads now

03 Dec 23:36
Compare
Choose a tag to compare

The program now uses threads to function its main program, Other key changes are refactoring code and improving interface to threads

  • Threads now return the return value from Thread::exit to Thread::join
  • Server has a appendBufferTo function to copy its buffer
  • servod program now uses threads to run its controls

Namespaced Threads

30 Nov 16:56
Compare
Choose a tag to compare

Updated tests and namespaced the Threads classes in server

  • Refactored threads to use special exception for invalid locks, and also namespaced thread values inside Threads namespace
  • Changed playground folder to be in the root rather than hidden in server folder.
  • Added locked tests for Threads

Multithreaded environment

29 Nov 22:57
Compare
Choose a tag to compare

This release adds the capacity to do threading, to the system. Note the program itself is not threaded at this point.

  • Added Threads
  • Added Lock
  • Added tests for Threads
  • Added playground/pthread for developing

First release

29 Nov 00:06
Compare
Choose a tag to compare

First every tagged release. Yay 👍

  • Nothing to report