Files
-
/
-
addon board / C64Saver2-addon.kicad_pcb
-
addon board / C64Saver2-addon.sch
-
addon board / rescue-backup / C64Saver2-addon-2019-05-19-18-52-40.sch
-
C64 Saver 2 / C64Saver2.kicad_pcb
-
C64 Saver 2 / C64Saver2.sch
-
old-saver / 1.0 / c64saver.brd
-
old-saver / 1.0 / c64saver.sch
-
old-saver / 1.1-1.3 / c64saver_1.1.brd
-
old-saver / 1.1-1.3 / c64saver_1.1.sch
-
old-saver / 1.1-1.3 / c64saver_1.2.brd
-
old-saver / 1.1-1.3 / c64saver_1.3.brd
-
old-saver / 1.1-1.3 / c64saver_1.3.sch
Last update 5 years 8 months
by
bwack
Filesaddon boardsrclibstinusaur-ssd1306xledssd1306xled | |
---|---|
.. | |
font6x8.h | |
font8x16.h | |
num2str.c | |
num2str.h | |
ssd1306xled.c | |
ssd1306xled.c.ini | |
ssd1306xled.h |
num2str.h/** * NUM2STR - Functions to handle the conversion of numeric vales to strings. * * @created 2014-12-18 * @author Neven Boyanov * @version 2016-04-17 (last modified) * * This is part of the Tinusaur/TinyAVRLib project. * * Copyright (c) 2016 Neven Boyanov, Tinusaur Team. All Rights Reserved. * Distributed as open source software under MIT License, see LICENSE.txt file. * Please, as a favor, retain the link http://tinusaur.org to The Tinusaur Project. * * Source code available at: https://bitbucket.org/tinusaur/tinyavrlib * */ // ============================================================================ #ifndef NUM2STR_H #define NUM2STR_H // ---------------------------------------------------------------------------- #include <stdint.h> // ---------------------------------------------------------------------------- #define USINT2DECASCII_MAX_DIGITS 5 #define USINT2BINASCII_MAX_DIGITS 16 // ---------------------------------------------------------------------------- uint8_t usint2decascii(uint16_t, char *); uint8_t usint2binascii(uint16_t, char *); // ---------------------------------------------------------------------------- #endif // ============================================================================