Skip to content

Commit

Permalink
Updated spi and gpio device nodes to be used for sample with nrf52833dk
Browse files Browse the repository at this point in the history
  • Loading branch information
vChavezB committed May 3, 2024
1 parent 88f7c32 commit c8e4c8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/ifm_sample_app/src/iol_master_sample_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
#include "iolink_handler.h"
#include <iolm/zephyr.h>

static const struct device *const spi_dev = NULL;//DEVICE_DT_GET(DT_NODELABEL(quadspi ));
static const struct device *const irq_port = DEVICE_DT_GET(DT_NODELABEL(gpioe));
static const struct device *const spi_dev = DEVICE_DT_GET(DT_NODELABEL(spi1));
static const struct device *const irq_port = DEVICE_DT_GET(DT_NODELABEL(gpio0));

#define IOLINK_HANDLER_THREAD_STACK_SIZE (2048)
#define IOLINK_HANDLER_THREAD_PRIO 5
Expand Down

0 comments on commit c8e4c8c

Please sign in to comment.