aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Code_Composer/twine_graphicslib
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2017-11-16 18:07:34 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2017-11-16 18:07:34 +0200
commitfc703faaa6326e28e146e00615db01c48ded0ece (patch)
tree26b8b3134ab8562d8a7bf3c04bf99b897c5c3edb /Software/Code_Composer/twine_graphicslib
parent4be586d903da2b0dbba23f4978e14ad7d51edcbf (diff)
downloadTango-fc703faaa6326e28e146e00615db01c48ded0ece.tar.gz
Tango-fc703faaa6326e28e146e00615db01c48ded0ece.zip
Implemented PMR for CCS!
First test working. Parsed and returned Calculate Stub! Implemented custom proto C compiling to achieve shorter struct names!
Diffstat (limited to 'Software/Code_Composer/twine_graphicslib')
-rw-r--r--Software/Code_Composer/twine_graphicslib/graphics_adapter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Code_Composer/twine_graphicslib/graphics_adapter.c b/Software/Code_Composer/twine_graphicslib/graphics_adapter.c
index 47500d0a3..93eb6fa17 100644
--- a/Software/Code_Composer/twine_graphicslib/graphics_adapter.c
+++ b/Software/Code_Composer/twine_graphicslib/graphics_adapter.c
@@ -41,5 +41,5 @@ void draw_string(char* data, size_t length)
GrContextFontSet(&g_sContext, TEXT_FONT);
GrContextForegroundSet(&g_sContext, ClrWhite);
- GrStringDraw(&g_sContext, data, length, 150, 80, true);
+ GrStringDraw(&g_sContext, data, length, 0, 0, true);
}