summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm3210e-eval/RIDE/bigfatstub.c
blob: b9b51dd983d010d4154d633dee544372b02d420a (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
#include <stdint.h>
#include <nuttx/irq.h>
#include "up_internal.h"

void os_start(void)
{
	up_lowputc('X');
	up_lowputc('\n');
	for (;;);
}

void up_assert_code(const uint8_t *filename, int lineno, int errorcode)
{
	up_lowputc('?');
	up_lowputc('\n');
	for (;;);
}

int irq_attach(int irq, xcpt_t isr)
{
	up_lowputc('A');
	up_lowputc('\n');
	for (;;);
}

uint32_t *up_doirq(int irq, uint32_t *regs)
{
	up_lowputc('I');
	up_lowputc('\n');
	for (;;);
}