blob: 60b714dd71f1d642203d5a4098713b492ea7fa08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# calculator
A from-scratch operating system for a graphing calculator.
The goal of this project is to design a functional operating system for a
graphing calculator based on the STM32L476RG processor. This OS has been
designed from scratch to optimize for speed and code size, targeting the
features necessary for a graphing calculator application.
Required packages:
* arm-none-eabi toolchain
* openocd
* make
Use ```run.sh``` to upload the final output to the processor.
## design overview
The core of the operating system is written entirely in C and assembly. This
project is paired with the [interpreter project](https://code.bitgloo.com/clyne/interpreter)
(licensed under the GPL),
which parses script from C strings. The operating system exposes calls to the
script parser, and then loads the text file at ```initrd/init```.
|