aevum

A CLI utility to calculate timer register values for STM32 microcontrollers. Given the desired length of the timer, aevum will calculate and spit out the prescaler and auto-reload register values.

Usage

Run aevum with ./aevum --help for more information.

When using aevum, you must always provide the desired period of time to run the timer. By default the units are in seconds. The program assumes that the prescaler and auto-reload registers are both 16-bit.

Options

Examples

Sets a search for a 10 second timer with a 16MHz timer clock
aevum 10 -c 16000000

Sets a search for 20 milliseconds with a 8MHz timer clock
aevum 20 -m -c 8000000

Sets a search for 10 microseconds with the default clock value and only calculates the first 2 matches aevum 10 -u -r 2

Installation

Precompiled binaries are not yet available. You can compile the project from source if your machine has Rust. $ git clone https://github.com/dylanwishner/aevum.git $ cd aevum $ cargo build

To-do List