DIY Auto-Correlator 1.0
Auto-Correlator Card implementation using Teensy 4.x microcontrollers.
types.hpp
Go to the documentation of this file.
1#pragma once
2#include <cstdint>
3
4//Type Declarations
5
6using counter_t = uint32_t;
8
9using index_t = uint_fast8_t;
11
12#define PIT_CHANNEL_IN_USE 2
uint32_t counter_t
Data type received from the pulse counter. It is the fundamental type used for representing series da...
Definition: types.hpp:7
uint_fast8_t index_t
It is used as the array indices and thus determine the maximum size of the Channel_array and the Seri...
Definition: types.hpp:10