2 * Copyright © 2014 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.
19 #include <ao_adc_fast.h>
25 static uint16_t *buffer[2];
34 buffer[0] = ao_usb_alloc();
35 buffer[1] = ao_usb_alloc();
41 if (ao_cmd_status == ao_cmd_success)
42 kbytes = ao_cmd_lex_u32;
44 ao_cmd_status = ao_cmd_success;
46 count = kbytes * (1024/AO_USB_IN_SIZE);
50 ao_led_on(AO_LED_GREEN);
52 buf = buffer[usb_buf_id];
53 // printf ("before get: head %3d tail %3d running %d\n", ao_adc_ring_head, ao_adc_ring_tail, ao_adc_running); flush();
54 rnd = (uint32_t *) ao_adc_get(AO_USB_IN_SIZE); /* one 16-bit value per output byte */
55 // printf ("after get: head %3d tail %3d running %d\n", ao_adc_ring_head, ao_adc_ring_tail, ao_adc_running); flush();
56 for (i = 0; i < 32; i++)
57 *buf++ = ao_crc_in_32_out_16(*rnd++);
58 ao_adc_ack(AO_USB_IN_SIZE);
59 // printf ("after ack: head %3d tail %3d running %d\n", ao_adc_ring_head, ao_adc_ring_tail, ao_adc_running); flush();
60 ao_led_toggle(AO_LED_GREEN|AO_LED_RED);
61 ao_usb_write(buffer[usb_buf_id], AO_USB_IN_SIZE);
62 ao_led_toggle(AO_LED_GREEN|AO_LED_RED);
63 usb_buf_id = 1-usb_buf_id;
65 ao_led_off(AO_LED_GREEN|AO_LED_RED);
69 static const struct ao_cmds usbtrng_cmds[] = {
70 { ao_trng_fetch, "f <kbytes>\0Fetch a block of numbers" },
76 ao_led_init(LEDS_AVAILABLE);
77 ao_led_on(AO_LED_RED);
89 ao_cmd_register(usbtrng_cmds);
90 ao_led_off(AO_LED_RED);