blob: 4a044230642e5b3f46ade3350d2623b4f851969d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// Source code under CC0 1.0
#include <stdint.h>
#include <stdio.h>
#include "stm8.h"
#include "serial.h"
volatile unsigned char *sif= (unsigned char *)0x7fff;
void
print_bl()
{
int a, l;
uint8_t *p= (uint8_t *)0x6000;
printf("%c\n", 2);
printf("$A%04x,\n", 0x6000);
for (a= 0, l= 0; a < 0x800; a++)
{
printf("%02x ", p[a]);
l++;
if ((l % 16) == 0)
{
l= 0;
printf("\n");
}
}
printf("%c\n", 3);
}
void main(void)
{
unsigned long i = 0;
CLK->ckdivr = 0x00; // Set the frequency to 16 MHz
CLK->pckenr1 = 0xFF; // Enable peripherals
USART->cr2 = USART_CR2_TEN | USART_CR2_REN; // Allow TX and RX
USART->cr3 &= ~(USART_CR3_STOP1 | USART_CR3_STOP2); // 1 stop bit
USART->brr2 = 0x03;
USART->brr1 = 0x68; // 9600 baud
USART->cr2|= USART_CR2_RIEN;
EI;
for(;;)
{
if (serial_received())
{
char c= getchar();
if (c == '=')
{
print_bl();
}
else if (c == '*')
{
printf("0x%04x\n", 0x6000);
}
else
printf("%c", c);
}
}
}
|