2 * Copyright © 2011 Keith Packard <keithp@keithp.com>
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.
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.
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.
20 struct ao_task demo_task;
22 static inline int min(int a, int b) { return a < b ? a : b; }
27 char message[] = "Hello, Mike & Bdale --- ";
30 int len = sizeof(message) - 1;
35 ao_delay(AO_MS_TO_TICKS(150));
36 first = min(6, len - i);
38 memcpy(part, message + i, first);
39 memcpy(part + first, message, second);
40 ao_lcd_font_string(part);
54 #define AO_DMA_TEST_INDEX STM_DMA_INDEX(4)
58 static char src[20] = "hello, world";
62 ao_dma_set_transfer(AO_DMA_TEST_INDEX, dst, src, 13,
63 (1 << STM_DMA_CCR_MEM2MEM) |
64 (STM_DMA_CCR_PL_LOW << STM_DMA_CCR_PL) |
65 (STM_DMA_CCR_MSIZE_8 << STM_DMA_CCR_MSIZE) |
66 (STM_DMA_CCR_PSIZE_8 << STM_DMA_CCR_PSIZE) |
67 (1 << STM_DMA_CCR_MINC) |
68 (1 << STM_DMA_CCR_PINC) |
69 (0 << STM_DMA_CCR_CIRC) |
70 (STM_DMA_CCR_DIR_MEM_TO_PER << STM_DMA_CCR_DIR));
71 ao_dma_start(AO_DMA_TEST_INDEX);
73 while (!ao_dma_done[AO_DMA_TEST_INDEX])
74 ao_sleep(&ao_dma_done[AO_DMA_TEST_INDEX]);
76 ao_dma_done_transfer(AO_DMA_TEST_INDEX);
77 printf ("copied %s\n", dst);
82 unsigned char data[] = { 0x55, 0xaa, 0xff, 0x00 };
85 for (i = 0; i < 10; i++) {
87 stm_gpio_set(&stm_gpioc, 12, 0);
88 ao_spi_send(data, 4, 0);
89 stm_gpio_set(&stm_gpioc, 12, 1);
99 unsigned char data[4];
102 for (i = 0; i < 10; i++) {
104 stm_gpio_set(&stm_gpioc, 12, 0);
105 ao_spi_recv(data, 4, 0);
106 stm_gpio_set(&stm_gpioc, 12, 1);
116 unsigned char data[] = { 0x55, 0xaa, 0xff, 0x00 };
119 for (i = 0; i < 10; i++) {
121 if (ao_i2c_start(0, 0x55))
122 ao_i2c_send(data, 4, 0, TRUE);
124 printf ("i2c start failed\n");
138 struct ao_data packet;
141 ao_data_get(&packet);
144 * r = (110 - 25) / (ts_cal_hot - ts_cal_cold)
145 * 25 + (110 - 25) * (temp - ts_cal_cold) / (ts_cal_hot - ts_cal_cold)
147 temp = 25 + (110 - 25) * (packet.adc.temp - stm_temp_cal.ts_cal_cold) / (stm_temp_cal.ts_cal_hot - stm_temp_cal.ts_cal_cold);
148 printf ("temp: %d\n", temp);
151 __code struct ao_cmds ao_demo_cmds[] = {
152 { ao_dma_test, "D\0DMA test" },
153 { ao_spi_write, "W\0SPI write" },
154 { ao_spi_read, "R\0SPI read" },
155 { ao_i2c_write, "i\0I2C write" },
156 { ao_temp, "t\0Show temp" },
170 // ao_lcd_font_init();
174 ao_timer_set_adc_interval(100);
179 ao_cmd_register(&ao_demo_cmds[0]);
181 ao_start_scheduler();