c++/rgb-assembler/types.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 23 Dec 2017 20:13:24 +0100
changeset 19 17785b69430d
child 28 2b2f8a17d63a
permissions -rw-r--r--
move typedefs to a header file
     1 #pragma once
     2 
     3 #include <cstdint>
     4 
     5 typedef uint16_t address_t;
     6 typedef uint8_t octet_t;
     7 typedef uint8_t command_t;
     8 typedef uint8_t sleep_t;
     9 typedef uint8_t color_t;
    10 typedef uint8_t led_t;