summaryrefslogblamecommitdiff
path: root/nuttx/configs/stm3210e-eval/RIDE/bigfatstub.c
blob: 63150f58f42b795b7bcc4a565fd1f656ce50774e (plain) (tree)
1
2
3
4
5
6
7
8
9

                       






                          




















                                                                      
 
#include <sys/types.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 ubyte *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 *up_doirq(int irq, uint32 *regs)
{
	up_lowputc('I');
	up_lowputc('\n');
	for (;;);
}