Ejemplo n.º 1
0
void lcd_init(const lcd_def *def)
{
  // Set GPIO clock
  if (def->port == GPIOA)
  {
    RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE);
  }
  else if (def->port == GPIOB)
  {
    RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOB, ENABLE);
  }
  else if (def->port == GPIOC)
  {
    RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOC, ENABLE);
  }
  else if (def->port == GPIOD)
  {
    RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOD, ENABLE);
  }
  else if (def->port == GPIOE)
  {
    RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOE, ENABLE);
  }
  else if (def->port == GPIOF)
  {
    RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOF, ENABLE);
  }

  // Initialize GPIO pins
  GPIO_InitTypeDef gpio_init;

  gpio_init.GPIO_Pin   = def->pin_register_select |
                         def->pin_enable |
                         def->pin_d4 |
                         def->pin_d5 |
                         def->pin_d6 |
                         def->pin_d7;

  gpio_init.GPIO_Mode  = GPIO_Mode_OUT;
  gpio_init.GPIO_OType = GPIO_OType_PP;
  gpio_init.GPIO_Speed = GPIO_Speed_10MHz;
  gpio_init.GPIO_PuPd  = GPIO_PuPd_NOPULL;

  GPIO_Init(def->port, &gpio_init);

  // wait for initialization
  sleep_ms(30);

  // select 4-bit interface
  _lcd_set_nibble(def, 2);
  sleep_ms(20);

  // init
  _lcd_send_command(def, 0x28); // 4 bit mode, 2 lines, 5x7 glyph
  _lcd_send_command(def, 0x0c); // display with no cursor, no blink
  _lcd_send_command(def, 0x06); // automatic increment, no display shift

  lcd_home(def);
  lcd_clear(def);
}
Ejemplo n.º 2
0
void _print_char(unsigned char c)
{
  // check for newline.
  if(c == '\n')
  {
	  // set the newline on the display.
	  _lcd_send_command(REG_CONTROL, LCD_NEWLINE);
  }
  else
  {
	  // print the char.
	  _lcd_send_command(REG_DATA, c);
  }
}
Ejemplo n.º 3
0
void lcd_set_pos(const lcd_def *def, uint8_t x, uint8_t y)
{
  uint8_t pos = x | 0x80;

  // add y position
  if (y == 2)
  {
    pos |= 0x14; // line 2
  }
  else
  {
    pos |= 0x40; // line 1
  }

  _lcd_send_command(def, pos);
}
Ejemplo n.º 4
0
void lcd_home(const lcd_def *def)
{
  _lcd_send_command(def, 0x80);
  sleep_ms(1);
}
Ejemplo n.º 5
0
void lcd_clear(const lcd_def *def)
{
  _lcd_send_command(def, 0x01);
}