Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Unified Diff: platforms/stm/disco_fletch/src/lcd_log_conf.h

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « platforms/stm/disco_fletch/src/globals.h ('k') | platforms/stm/disco_fletch/src/main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platforms/stm/disco_fletch/src/lcd_log_conf.h
diff --git a/platforms/stm/disco_fletch/src/lcd_log_conf.h b/platforms/stm/disco_fletch/src/lcd_log_conf.h
deleted file mode 100644
index 494c3d25789d24e3eaa808ba5883600f480d1605..0000000000000000000000000000000000000000
--- a/platforms/stm/disco_fletch/src/lcd_log_conf.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE.md file.
-
-// Configuration of the STM LCD log utility
-#ifndef PLATFORMS_STM_DISCO_FLETCH_SRC_LCD_LOG_CONF_H_
-#define PLATFORMS_STM_DISCO_FLETCH_SRC_LCD_LOG_CONF_H_
-
-#include <stdio.h>
-
-#include <stm32746g_discovery_lcd.h>
-
-// Enable the scroll back and forward feature
-#define LCD_SCROLL_ENABLED 1
-
-// Define the Fonts.
-#define LCD_LOG_HEADER_FONT Font16
-#define LCD_LOG_FOOTER_FONT Font12
-#define LCD_LOG_TEXT_FONT Font12
-
-// Define the LCD LOG Color.
-#define LCD_LOG_BACKGROUND_COLOR LCD_COLOR_WHITE
-#define LCD_LOG_TEXT_COLOR LCD_COLOR_DARKBLUE
-
-#define LCD_LOG_SOLID_BACKGROUND_COLOR LCD_COLOR_BLUE
-#define LCD_LOG_SOLID_TEXT_COLOR LCD_COLOR_WHITE
-
-// Define the cache depth.
-#define CACHE_SIZE 100
-#define YWINDOW_SIZE 17
-
-#if (YWINDOW_SIZE > 17)
- #error "Wrong YWINDOW SIZE"
-#endif
-
-// Define the writing to the display in log utility to this signature.
-#define LCD_LOG_PUTCHAR int LCDLogPutchar(int ch)
-
-#endif // PLATFORMS_STM_DISCO_FLETCH_SRC_LCD_LOG_CONF_H_
« no previous file with comments | « platforms/stm/disco_fletch/src/globals.h ('k') | platforms/stm/disco_fletch/src/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698