summaryrefslogtreecommitdiff
path: root/lib/serialio.c
blob: 899ca3ed3779e8e9d1f41b8e53b3283930a324c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 *  spreadspace stm8 utils
 *
 *
 *  Copyright (C) 2014-2016 Christian Pointner <equinox@spreadspace.org>
 *
 *  This file is part of spreadspace stm8 utils.
 *
 *  spreadspace stm8 utils is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  any later version.
 *
 *  spreadspace stm8 utils is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with spreadspace stm8 utils. If not, see <http://www.gnu.org/licenses/>.
 */

#include <stm8s.h>

#include "serialio.h"

void putchar(char c) {
  while (UART2_GetFlagStatus(UART2_FLAG_TXE) == RESET);
  UART2_SendData8(c);
}

char getchar(void) {
  return UART2_ReceiveData8();
}

void serialio_init(const uint32_t baudrate)
{
  UART2_Init(baudrate, UART2_WORDLENGTH_8D, UART2_STOPBITS_1, UART2_PARITY_NO, UART2_SYNCMODE_CLOCK_DISABLE, UART2_MODE_TXRX_ENABLE);
}

void serialio_task(void)
{
}

uint8_t serialio_bytes_received(void)
{
  return (UART2_GetFlagStatus(UART2_FLAG_RXNE) == RESET) ? 0 : 1;
}