summaryrefslogtreecommitdiffstats
path: root/ape
diff options
context:
space:
mode:
authorEvan Lojewski <github@meklort.com>2021-06-19 09:29:21 -0600
committerGitHub <noreply@github.com>2021-06-19 09:29:21 -0600
commit7d01dd87e833bc5372aaae6c0eb8bc982ac6a419 (patch)
tree4e0615838684ca95bbe4e4d276f12fb2cfb25f57 /ape
parent23590ad82730c9304cc58f5e1a649ab909e1cf28 (diff)
downloadbcm5719-ortega-7d01dd87e833bc5372aaae6c0eb8bc982ac6a419.tar.gz
bcm5719-ortega-7d01dd87e833bc5372aaae6c0eb8bc982ac6a419.zip
build: Update various support files with codacy recommendations. (#227)
Diffstat (limited to 'ape')
-rw-r--r--ape/vectors.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ape/vectors.c b/ape/vectors.c
index 895b439..e02f2d8 100644
--- a/ape/vectors.c
+++ b/ape/vectors.c
@@ -52,7 +52,7 @@ extern vector_t __start; // Defined by crt1.s
void __attribute__((interrupt)) IRQ_Default(void)
{
uint32_t vector = NVIC.InterruptControlState.bits.VECTACTIVE;
- printf("ISR: %d\n", vector);
+ printf("ISR: %u\n", vector);
}
// Alias all IRQ routines ot the default handler.
OpenPOWER on IntegriCloud