summaryrefslogtreecommitdiff
path: root/firmware/system.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/system.c')
-rw-r--r--firmware/system.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/firmware/system.c b/firmware/system.c
index 7163468cf6..389ecea80a 100644
--- a/firmware/system.c
+++ b/firmware/system.c
@@ -233,12 +233,18 @@ static const char* const uiename[] = {
233 "Divide by zero" 233 "Divide by zero"
234}; 234};
235 235
236int bla(int arg)
237{
238 return arg+1;
239}
240
236/* Unexpected Interrupt or Exception handler. Currently only deals with 241/* Unexpected Interrupt or Exception handler. Currently only deals with
237 exceptions, but will deal with interrupts later. 242 exceptions, but will deal with interrupts later.
238 */ 243 */
239void UIE(unsigned int pc, unsigned int num) __attribute__((noreturn)); 244void UIE(unsigned int pc, unsigned int num) __attribute__((noreturn));
240void UIE(unsigned int pc, unsigned int num) 245void UIE(unsigned int pc, unsigned int num)
241{ 246{
247#warning got here
242 char str[32]; 248 char str[32];
243 249
244 lcd_clear_display(); 250 lcd_clear_display();