OpenCores
URL https://opencores.org/ocsvn/neorv32/neorv32/trunk

Subversion Repositories neorv32

[/] [neorv32/] [trunk/] [sw/] [example/] [demo_trng/] [main.c] - Blame information for rev 23

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 zero_gravi
// #################################################################################################
2
// # << NEORV32 - TRNG Demo Program >>                                                             #
3
// # ********************************************************************************************* #
4
// # BSD 3-Clause License                                                                          #
5
// #                                                                                               #
6
// # Copyright (c) 2020, Stephan Nolting. All rights reserved.                                     #
7
// #                                                                                               #
8
// # Redistribution and use in source and binary forms, with or without modification, are          #
9
// # permitted provided that the following conditions are met:                                     #
10
// #                                                                                               #
11
// # 1. Redistributions of source code must retain the above copyright notice, this list of        #
12
// #    conditions and the following disclaimer.                                                   #
13
// #                                                                                               #
14
// # 2. Redistributions in binary form must reproduce the above copyright notice, this list of     #
15
// #    conditions and the following disclaimer in the documentation and/or other materials        #
16
// #    provided with the distribution.                                                            #
17
// #                                                                                               #
18
// # 3. Neither the name of the copyright holder nor the names of its contributors may be used to  #
19
// #    endorse or promote products derived from this software without specific prior written      #
20
// #    permission.                                                                                #
21
// #                                                                                               #
22
// # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS   #
23
// # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF               #
24
// # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE    #
25
// # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,     #
26
// # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE #
27
// # GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED    #
28
// # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING     #
29
// # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED  #
30
// # OF THE POSSIBILITY OF SUCH DAMAGE.                                                            #
31
// # ********************************************************************************************* #
32
// # The NEORV32 Processor - https://github.com/stnolting/neorv32              (c) Stephan Nolting #
33
// #################################################################################################
34
 
35
 
36
/**********************************************************************//**
37
 * @file demo_trng/main.c
38
 * @author Stephan Nolting
39
 * @brief TRNG demo program.
40
 **************************************************************************/
41
 
42
#include <neorv32.h>
43
 
44
 
45
/**********************************************************************//**
46
 * @name User configuration
47
 **************************************************************************/
48
/**@{*/
49
/** UART BAUD rate */
50
#define BAUD_RATE 19200
51
/**@}*/
52
 
53
 
54
 
55
/**********************************************************************//**
56
 * This program generates a simple dimming sequence for PWM channel 0,1,2.
57
 *
58
 * @note This program requires the UART and the TRNG to be synthesized.
59
 *
60
 * @return Irrelevant.
61
 **************************************************************************/
62
int main(void) {
63
 
64
  uint8_t lucky_numbers_5of50[5];
65
  uint8_t lucky_numbers_2of10[2];
66
 
67 23 zero_gravi
  int err;
68
  uint8_t i, j, probe;
69
  uint8_t trng_data;
70 2 zero_gravi
  unsigned int num_samples;
71
 
72
  // check if UART unit is implemented at all
73
  if (neorv32_uart_available() == 0) {
74
    return 0;
75
  }
76
 
77
  // capture all exceptions and give debug info via UART
78
  // this is not required, but keeps us safe
79 14 zero_gravi
  neorv32_rte_setup();
80 2 zero_gravi
 
81
 
82
  // init UART at default baud rate, no rx interrupt, no tx interrupt
83
  neorv32_uart_setup(BAUD_RATE, 0, 0);
84
 
85
  // intro
86
  neorv32_uart_printf("\n--- TRNG Demo ---\n\n");
87
 
88
  // check if TRNG unit is implemented at all
89
  if (neorv32_trng_available() == 0) {
90
    neorv32_uart_printf("No TRNG implemented.");
91
    return 0;
92
  }
93
 
94 23 zero_gravi
  // enable TRNG
95
  neorv32_trng_enable();
96 2 zero_gravi
 
97
  while(1) {
98
 
99
    // main menu
100
    neorv32_uart_printf("\nCommands:\n"
101
                        " n: Print 8-bit random numbers (abort by pressing any key)\n"
102
                        " l: Print your lucky numbers\n");
103
 
104
    neorv32_uart_printf("CMD:> ");
105
    char cmd = neorv32_uart_getc();
106
    neorv32_uart_putc(cmd); // echo
107
    neorv32_uart_printf("\n");
108
 
109
    // output RND data
110
    if (cmd == 'n') {
111
      num_samples = 0;
112
      while(1) {
113 23 zero_gravi
        err = neorv32_trng_get(&trng_data);
114
        if (err) {
115
          neorv32_uart_printf("\nTRNG error (%i)!\n", err);
116 2 zero_gravi
          break;
117
        }
118 23 zero_gravi
        neorv32_uart_printf("%u ", (uint32_t)(trng_data));
119 2 zero_gravi
        num_samples++;
120
        if (neorv32_uart_char_received()) { // abort when key pressed
121
          neorv32_uart_printf("\nPrinted samples: %u", num_samples);
122
          break;
123
        }
124
      }
125
    }
126
 
127
    // print lucky numbers
128
    if (cmd == 'l') {
129 23 zero_gravi
      // reset arrays
130 2 zero_gravi
      for (i=0; i<5; i++) {
131
        lucky_numbers_5of50[i] = 0;
132
      }
133
      lucky_numbers_2of10[0] = 0;
134
      lucky_numbers_2of10[1] = 0;
135
 
136
      // get numbers
137
      i = 0;
138
      while (i<5) {
139 23 zero_gravi
        err = neorv32_trng_get(&trng_data);
140
        if (err) {
141
          neorv32_uart_printf("\nTRNG error (%i)!\n", err);
142 2 zero_gravi
          break;
143
        }
144
        // valid range?
145 23 zero_gravi
        if ((trng_data == 0) || (trng_data > 50)) {
146 2 zero_gravi
          continue;
147
        }
148
        // already sampled?
149 23 zero_gravi
        probe = 0;
150 2 zero_gravi
        for (j=0; j<5; j++) {
151 23 zero_gravi
          if (lucky_numbers_5of50[j] == trng_data) {
152
            probe++;
153 2 zero_gravi
          }
154
        }
155 23 zero_gravi
        if (probe) {
156
          continue;
157
        }
158
        else {
159
          lucky_numbers_5of50[i] = trng_data;
160
          i++;
161
        }
162 2 zero_gravi
      }
163
 
164
      // get numbers part 2
165
      i = 0;
166
      while (i<2) {
167 23 zero_gravi
        err = neorv32_trng_get(&trng_data);
168
        if (err) {
169
          neorv32_uart_printf("\nTRNG error (%i)!\n", err);
170 2 zero_gravi
          break;
171
        }
172
        // valid range?
173 23 zero_gravi
        if ((trng_data == 0) || (trng_data > 10)) {
174 2 zero_gravi
          continue;
175
        }
176
        // already sampled?
177 23 zero_gravi
        probe = 0;
178 2 zero_gravi
        for (j=0; j<2; j++) {
179 23 zero_gravi
          if (lucky_numbers_2of10[j] == trng_data) {
180
            probe++;
181 2 zero_gravi
          }
182
        }
183 23 zero_gravi
        if (probe) {
184
          continue;
185
        }
186
        else {
187
          lucky_numbers_2of10[i] = trng_data;
188
          i++;
189
        }
190 2 zero_gravi
      }
191
 
192
      // output
193
      neorv32_uart_printf("\n");
194
      for (j=0; j<5; j++) {
195
        if (i==4) {
196
          neorv32_uart_printf("%u", (uint32_t)lucky_numbers_5of50[j]);
197
        }
198
        else {
199
          neorv32_uart_printf("%u, ", (uint32_t)lucky_numbers_5of50[j]);
200
        }
201
      }
202
      neorv32_uart_printf("\nLucky numbers: %u, %u\n", (uint32_t)lucky_numbers_2of10[0], (uint32_t)lucky_numbers_2of10[1]);
203
 
204
    }
205
  }
206
 
207
  return 0;
208
}
209
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.