view src/cs/services/fcbm/fcbm_textout.c @ 263:b5e8dfd114a7

Switch_ON(): go into charging boot mode on either CHGSTS or CHGPRES If someone were to plug and then unplug a charger into a switched-off phone in an extremely brief "glitch" manner, we should do an automatic power-off on boot in this condition. When we were checking only CHGPRES in Switch_ON(), we would go into Misc boot state instead, which is undesirable. Now if we have a CHGSTS but not CHGPRES condition, we will go into charging boot mode, and FCBM will then do the automatic power-off upon detecting absence of the charger in its periodic polling.
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 14 May 2021 05:50:36 +0000
parents 35474f3a1782
children
line wrap: on
line source

/*
 * In this module we are going to implement functions for
 * displaying FCBM text strings on the LCD, abstracting
 * the messy Condat display driver for our purposes.
 */

#include "rv/rv_general.h"
#include "fcbm/fcbm_func_i.h"
#include "typedefs.h"
#include "dspl.h"

#ifdef LSCREEN
  #define	FONT_HEIGHT	16
  #define	FAR_END_X	175
#else
  #define	FONT_HEIGHT	8
  #define	FAR_END_X	95
#endif

void fcbm_display_init(void)
{
	dspl_Init();
	dspl_set_char_type(DSPL_TYPE_ASCII);
}

void fcbm_display_line(UINT16 row, char *text)
{
	dspl_Clear(0, row * FONT_HEIGHT, FAR_END_X,
		   (row + 1) * FONT_HEIGHT - 1);
	dspl_ScrText(0, row * FONT_HEIGHT, text, TXT_STYLE_NORMAL);
}