You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by an...@apache.org on 2022/08/30 11:44:31 UTC

[mynewt-nimble] 01/02: babblesim: Fix build with latest BabbleSim

This is an automated email from the ASF dual-hosted git repository.

andk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git

commit a7d5ac1148b07fc0458da71c3ebe7cd9e8264507
Author: Andrzej Kaczmarek <an...@codecoup.pl>
AuthorDate: Tue Aug 30 10:41:13 2022 +0200

    babblesim: Fix build with latest BabbleSim
    
    irq_sources.h was removed, not needed.
---
 babblesim/core/src/cmsis.c       | 1 -
 babblesim/core/src/irq_handler.c | 1 -
 2 files changed, 2 deletions(-)

diff --git a/babblesim/core/src/cmsis.c b/babblesim/core/src/cmsis.c
index 9beb3290..1ac6b241 100644
--- a/babblesim/core/src/cmsis.c
+++ b/babblesim/core/src/cmsis.c
@@ -9,7 +9,6 @@
 #include <stdint.h>
 #include "irq_ctrl.h"
 
-#include "irq_sources.h"
 #include <nrfx.h>
 #include "cmsis.h"
 #include "os/sim.h"
diff --git a/babblesim/core/src/irq_handler.c b/babblesim/core/src/irq_handler.c
index f72aaf24..d2979750 100644
--- a/babblesim/core/src/irq_handler.c
+++ b/babblesim/core/src/irq_handler.c
@@ -8,7 +8,6 @@
 
 #include <stdint.h>
 #include "irq_ctrl.h"
-#include "irq_sources.h"
 #include "os/sim.h"
 
 static int currently_running_irq = -1;