Giter VIP home page Giter VIP logo

ardunix's Introduction

ardunix

A shell prototype for arduino (or other extremely low memory devices). It can't be posix compliant in any way, but i try to make it familiar in some sense. Objectives for v.1:

  • Low memory foot print at start (below 512 bytes of ram, and 9kb of flash)
  • Shell with variables, very basic control flow (for, while, if) and functions
  • Simple filesystem in flash (PROGMEM) and another one for eeprom (RW)
  • Small and basic set of programs (ls, cat, echo, etc...)
  • Simple interface of the shell with lcd's, serial port, etc... (through read/write calls)
  • Support for scripts
  • Support for boot scripts

Commands

  • sh
  • ls
  • free
  • times
  • true
  • false
  • cat
  • echo
  • debug
  • set

Api

kernel

  • execve Execute a file, with its environment
  • exec The same as execve but without environment
  • execl Variable argument list exec (you must end the list with a 0 or NULL)

fs

  • opendir Open a directory for reading the contents
  • readdir Read next directory entry (call opendir first)
  • closedir Close directory open by opendir call (needed to free memory used)
  • rewinddir Point to the first element of the directory in a dir opened by opendir
  • stat Check access to a file, return pointer to it
  • open open a file, no close needed as all the information is in a variable used by the function calling open
  • read load in a buffer a number of defined bytes from a file

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.