09581affa4be5dc76833cfc3c4edc981439e4d1a
[fw/altos] / src / snekboard / snekboard.c
1 /*
2  * Copyright © 2016 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, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  */
14
15 #include <ao.h>
16 #include <ao_led.h>
17
18 #define SNEK_CS_PORT    (&samd21_port_a)
19 #define SNEK_CS_PIN     (11)
20 #define SNEK_SPI_INDEX  AO_SPI_0_PA08_PA09_PA10
21 #define SNEK_SPI_SPEED  ao_spi_speed(1000000)
22
23 static void
24 ao_spi_test(void)
25 {
26         ao_spi_get_bit(SNEK_CS_PORT, SNEK_CS_PIN, SNEK_SPI_INDEX, SNEK_SPI_SPEED);
27         ao_spi_send("hello", 5, SNEK_SPI_INDEX);
28         ao_spi_put_bit(SNEK_CS_PORT, SNEK_CS_PIN, SNEK_SPI_INDEX);
29 }
30
31 const struct ao_cmds ao_spi_cmds[] = {
32         { ao_spi_test,  "s \0Send some bytes over spi" },
33         { 0, NULL },
34 };
35
36 int main(void)
37 {
38         ao_led_init();
39         ao_clock_init();
40         ao_task_init();
41         ao_timer_init();
42         ao_spi_init();
43         ao_usb_init();
44         ao_cmd_register(ao_spi_cmds);
45         ao_spi_init_cs(&samd21_port_a, 1 << 11); /* analog 8 for CS */
46         ao_cmd_init();
47         ao_start_scheduler();
48         return 0;
49 }