blob: 40f2147f15c47abe5e1a3a8ddcddc259375cf954 [file] [log] [blame]
Kévin Redon69b92d92019-01-24 16:39:20 +01001/*
Kévin Redon78d2f442019-01-24 18:45:59 +01002 * Copyright (C) 2019 sysmocom -s.f.m.c. GmbH, Author: Kevin Redon <kredon@sysmocom.de>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17*/
Kévin Redon69b92d92019-01-24 16:39:20 +010018
19#include "atmel_start.h"
20#include "atmel_start_pins.h"
21
Harald Weltec3f170d2019-02-24 09:06:59 +010022#include "i2c_bitbang.h"
23#include "octsim_i2c.h"
24#include "ncn8025.h"
25
Kévin Redon8e538002019-01-30 11:19:19 +010026volatile static bool data_arrived = false;
Kévin Redon78d2f442019-01-24 18:45:59 +010027
28static void tx_cb_UART_debug(const struct usart_async_descriptor *const io_descr)
29{
30 /* Transfer completed */
Kévin Redon8e538002019-01-30 11:19:19 +010031 //gpio_toggle_pin_level(LED_system);
Kévin Redon78d2f442019-01-24 18:45:59 +010032}
33
34static void rx_cb_UART_debug(const struct usart_async_descriptor *const io_descr)
35{
36 /* Receive completed */
Kévin Redon6a8295c2019-01-30 18:58:44 +010037 gpio_toggle_pin_level(USER_LED);
Kévin Redon8e538002019-01-30 11:19:19 +010038 data_arrived = true;
Kévin Redon78d2f442019-01-24 18:45:59 +010039}
40
Harald Weltec3f170d2019-02-24 09:06:59 +010041static void board_init()
42{
43 int i;
44
45 for (i = 0; i < 4; i++)
46 i2c_init(&i2c[i]);
47
48 /* only 7 slots, as last slot is debug uart! */
49 for (i = 0; i < 7; i++)
50 ncn8025_init(i);
51}
52
Kévin Redon69b92d92019-01-24 16:39:20 +010053int main(void)
54{
55 atmel_start_init();
Kévin Redon78d2f442019-01-24 18:45:59 +010056
57 usart_async_register_callback(&UART_debug, USART_ASYNC_TXC_CB, tx_cb_UART_debug);
58 usart_async_register_callback(&UART_debug, USART_ASYNC_RXC_CB, rx_cb_UART_debug);
59 usart_async_enable(&UART_debug);
60
Kévin Redon8e538002019-01-30 11:19:19 +010061 usb_start();
62
Harald Weltec3f170d2019-02-24 09:06:59 +010063 board_init();
64
Kévin Redond7dfb6e2019-02-03 14:09:29 +010065 const char* welcome = "\r\n\r\nsysmocom sysmoOCTSIM\r\n";
66 while (io_write(&UART_debug.io, (const uint8_t*)welcome, strlen(welcome)) != strlen(welcome)); // print welcome message
Kévin Redon8e538002019-01-30 11:19:19 +010067 while (true) { // main loop
68 if (data_arrived) { // input on UART debug
69 data_arrived = false; // clear flag
70 uint8_t recv_char; // to store the input
71 while (io_read(&UART_debug.io, &recv_char, 1) == 1) { // read input
72 while (io_write(&UART_debug.io, &recv_char, 1) != 1); // echo back to output
73 }
74 }
75 }
Kévin Redon69b92d92019-01-24 16:39:20 +010076}