Skip to content
/ incolata Public

Incolata is an experimental, free, and open source fit-testing application, compatible with the PortaCount 8020 / 8020A (and maybe 8020M) .

License

Notifications You must be signed in to change notification settings

ahunt/incolata

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Incolata

This is a very hacky proof of concept, and entirely unvalidated, fit-testing application. It's expected to work with any PortaCount 8020 and 8020A, however it's only been tested with a single 8020A.

Warning

This codebase is extremely messy.

Main Window, showing a test in progress

Setup guide

Linux

Dependencies:

  • Rust+Cargo
  • Qt6, Qt6-Charts ('qt6-charts-dev' or equivalent should pull in all the right Qt deps)
  • CMake

Nice-to-have:

  • Ninja (e.g. 'ninja-build') - the example build instructions below use ninja, but you can also tell CMake to build using another tool if you prefer.

Build it:

See also the Github Actions Workflow at: https://github.com/ahunt/incolata/blob/main/.github/workflows/checks.yml

I typically run something like:

git submodule init
cmake -DCMAKE_BUILD_TYPE=Debug -G Ninja -S . -B build/Debug
cd build/Debug && ninja

Tip

You can also open the project in QtCreator, which should take care of configuring and building, modulo submodule init.

Static Analysis

scan-build cmake . -B build/analysis
cd build/analysis && scan-build make

Windows

TODO

Note

Some, but not all, Serial->USB adapters work out of the box. Here it's the opposite of the OSX situation: my Aten (with Prolific chip) just works, and my FTDI FT232R-based adapter required me to install their driver.

OSX

  1. Install Homebrew

  2. brew install git rust cmake qt ninja
    git clone https://github.com/ahunt/incolata.git && cd incolata &&  && git submodule init & git submodule update
    cmake -DCMAKE_BUILD_TYPE=Debug -G Ninja -S . -B build/Debug
    cd build/Debug && ninja && open incolata.app
    

Note

Some, but not all, Serial->USB adapters work out of the OSX. My (possibly fake) FTDI FT232R-based adapter does work, whereas my Aten (with Prolific chip) requires installing a Driver. (Don't forget to unblock the driver via System Settings->Privacy & Security->Enable System Extensions after installation.) Prolific offer a PL2303 Serial Driver on the app store, which might also work for the same Aten adapter, but I have not tested it.

Architecture

Actual test machinery will live in libp8020a. Incolata is just a (not so) nice (yet) GUI wrapper around that.

There is no real architecture to speak of, yet.

About

Incolata is an experimental, free, and open source fit-testing application, compatible with the PortaCount 8020 / 8020A (and maybe 8020M) .

Topics

Resources

License

Stars

Watchers

Forks