altos: Another missing usbtrng file
[fw/altos] / src / usbtrng / ao_usbtrng.c
1 /*
2  * Copyright © 2014 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include <ao.h>
19
20 #define AO_TRNG_SPI_BUS         1
21 #define AO_TRNG_SPI_SPEED       AO_SPI_SPEED_250kHz
22
23 static void
24 ao_trng_test(void)
25 {
26         static uint8_t  random[32];
27         uint8_t         i;
28
29         ao_spi_get(AO_TRNG_SPI_BUS, AO_TRNG_SPI_SPEED);
30         ao_spi_recv(random, sizeof (random), AO_TRNG_SPI_BUS);
31         ao_spi_put(AO_TRNG_SPI_BUS);
32         for (i = 0; i < sizeof (random); i++)
33                 printf (" %02x", random[i]);
34         printf ("\n");
35 }
36
37 static const struct ao_cmds ao_trng_cmds[] = {
38         { ao_trng_test, "R\0Dump some random numbers" },
39         { 0, NULL }
40 };
41
42 void
43 main(void)
44 {
45         ao_clock_init();
46         ao_task_init();
47         ao_timer_init();
48
49         ao_spi_init();
50         ao_usb_init();
51
52         ao_serial_init();
53
54         ao_led_init(LEDS_AVAILABLE);
55
56         ao_led_on(AO_LED_GREEN);
57
58         ao_cmd_init();
59
60         ao_cmd_register(ao_trng_cmds);
61
62         ao_start_scheduler();
63 }