summaryrefslogtreecommitdiffstats
path: root/Sensor Watch Starter Project/hpl/slcd/hpl_slcd_cm_7_seg_mapping.h
diff options
context:
space:
mode:
authorJoey Castillo <jose.castillo@gmail.com>2021-08-02 13:48:35 -0400
committerJoey Castillo <jose.castillo@gmail.com>2021-08-02 14:36:04 -0400
commit34945d78e933fc62bedcc975e88be02a0b7fcc2e (patch)
tree317edc18fe08d76a1f5d8c3aabf88cf58ba73897 /Sensor Watch Starter Project/hpl/slcd/hpl_slcd_cm_7_seg_mapping.h
parent2d1e2e8c76623543817f4c62b26fc300c1fd0d2c (diff)
downloadSensor-Watch-34945d78e933fc62bedcc975e88be02a0b7fcc2e.tar.gz
Sensor-Watch-34945d78e933fc62bedcc975e88be02a0b7fcc2e.tar.bz2
Sensor-Watch-34945d78e933fc62bedcc975e88be02a0b7fcc2e.zip
major project reorg, move library one level up
Diffstat (limited to 'Sensor Watch Starter Project/hpl/slcd/hpl_slcd_cm_7_seg_mapping.h')
-rw-r--r--Sensor Watch Starter Project/hpl/slcd/hpl_slcd_cm_7_seg_mapping.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/Sensor Watch Starter Project/hpl/slcd/hpl_slcd_cm_7_seg_mapping.h b/Sensor Watch Starter Project/hpl/slcd/hpl_slcd_cm_7_seg_mapping.h
deleted file mode 100644
index eae344c8..00000000
--- a/Sensor Watch Starter Project/hpl/slcd/hpl_slcd_cm_7_seg_mapping.h
+++ /dev/null
@@ -1,68 +0,0 @@
-#include <hpl_slcd_config.h>
-
-/**
- * character segments position index
- *
- * For a 7 segments character, each segment has an unique position index.
- * The segment layout and position index value is shown as below.
- * The symbol '-', '|' represent the SLCD character segment, and the
- * number represent each segment's position index, which equals to macro
- * SEG7_0 to SEG7_7.
- * The character lookup mapping table use those position index (SEG7_0..SEG7_7)
- * to compose some visible arabic numerals, letters or some specific ASCII.
- * For example char '0' can be represented by use position index 0,1,2,3,4,5.
- * (SEG7_0 | SEG7_1 | SEG7_2 | SEG7_3 | SEG7_4 | SEG7_5).
- * More predefined character lookup can be found at below "7-segments character
- * lookup mapping table"
- * -0
- * |5 |1
- * -6
- * |4 |2
- * -3
- */
-
-/**
- * Character segment position remapping setting
- *
- * An SLCD screen typically use several hardware segments to display a
- * character(for example from COM3/SEG0 to COM3/SEG7).
- * The lowest COM and SEG index is 0 (COM3/SEG0 index is 0).
- * The "hardware character segments index" maybe different with the "character
- * segments position index". The remapping setting allow application to adjust
- * those sequence.
- *
- */
-#define SEG7_0 (0x1 << CONF_SLCD_CM_7SEGS_0_SETTING)
-#define SEG7_1 (0x1 << CONF_SLCD_CM_7SEGS_1_SETTING)
-#define SEG7_2 (0x1 << CONF_SLCD_CM_7SEGS_2_SETTING)
-#define SEG7_3 (0x1 << CONF_SLCD_CM_7SEGS_3_SETTING)
-#define SEG7_4 (0x1 << CONF_SLCD_CM_7SEGS_4_SETTING)
-#define SEG7_5 (0x1 << CONF_SLCD_CM_7SEGS_5_SETTING)
-#define SEG7_6 (0x1 << CONF_SLCD_CM_7SEGS_6_SETTING)
-
-/**
- * 7-segments character mask value
- */
-#define SEG7_MASK (0xFFFFFF & ~(SEG7_0 | SEG7_1 | SEG7_2 | SEG7_3 | SEG7_4 | SEG7_5 | SEG7_6))
-
-/**
- * 7-segments character lookup mapping table.
- *
- * Array value of slcd_char_mapping struct, application can add or remove
- * item from it.
- */
-#define SLCD_SEG7_LUT \
- { \
- {0, 0}, {'0', SEG7_0 | SEG7_1 | SEG7_2 | SEG7_3 | SEG7_4 | SEG7_5}, {'1', SEG7_1 | SEG7_2}, \
- {'2', SEG7_0 | SEG7_1 | SEG7_3 | SEG7_4 | SEG7_6}, {'3', SEG7_0 | SEG7_1 | SEG7_2 | SEG7_3 | SEG7_6}, \
- {'4', SEG7_1 | SEG7_2 | SEG7_5 | SEG7_6}, {'5', SEG7_0 | SEG7_2 | SEG7_3 | SEG7_5 | SEG7_6}, \
- {'6', SEG7_0 | SEG7_2 | SEG7_3 | SEG7_4 | SEG7_5 | SEG7_6}, {'7', SEG7_0 | SEG7_1 | SEG7_2}, \
- {'8', SEG7_0 | SEG7_1 | SEG7_2 | SEG7_3 | SEG7_4 | SEG7_5 | SEG7_6}, \
- {'9', SEG7_0 | SEG7_1 | SEG7_2 | SEG7_5 | SEG7_6}, \
- {'a', SEG7_0 | SEG7_1 | SEG7_2 | SEG7_4 | SEG7_5 | SEG7_6}, \
- {'b', SEG7_2 | SEG7_3 | SEG7_4 | SEG7_5 | SEG7_6}, {'c', SEG7_0 | SEG7_3 | SEG7_4 | SEG7_5}, \
- {'d', SEG7_1 | SEG7_2 | SEG7_3 | SEG7_4 | SEG7_6}, {'e', SEG7_0 | SEG7_3 | SEG7_4 | SEG7_5 | SEG7_6}, \
- { \
- 'f', SEG7_0 | SEG7_4 | SEG7_5 | SEG7_6 \
- } \
- }