This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to get accelerometer value of Thingy:91?

I want to tranceive data to ADXL362 through SPI and refer to this program.

https://github.com/Rallare/fw-nrfconnect-nrf/tree/nrf9160_samples/samples/nrf9160/spi

However, I can't get data.

I only modified tx_buffer value.

void spi_test_send(void)
{
	int err;
	u8_t tx_buffer[1] = {0x00}; // Modified here
	u8_t rx_buffer[1];

	const struct spi_buf tx_buf = {
		.buf = tx_buffer,
		.len = sizeof(tx_buffer)
	};
	const struct spi_buf_set tx = {
		.buffers = &tx_buf,
		.count = 1
	};

	struct spi_buf rx_buf = {
		.buf = rx_buffer,
		.len = sizeof(rx_buffer),
	};
	const struct spi_buf_set rx = {
		.buffers = &rx_buf,
		.count = 1
	};

	err = spi_transceive(accel_spi_dev, &spi_cfg, &tx, &rx);
	if (err) {
		printk("SPI error: %d\n", err);
	} else {
		/* Connect MISO to MOSI for loopback */
		printk("TX sent: 0x%02x\n", tx_buffer[0]);
		printk("RX recv: 0x%02x\n", rx_buffer[0]);
//		tx_buffer[0]++;
	}	
}

Also, I added nrf9160_pca20035_v0_3_0.overlay file.

Any tip?

Parents
  • I am trying to do the same thing, Zephyr do have a sensor example for the ADXL362.

    /path/to/ncs/zephyr/samples/sensor/adxl362

    As Didrik says, this example uses the sensor.h API library. Don't ask me how to get it to work though, it straight up refused to get the device for 2 hours then randomly started working and I didn't change the example code apart from enabling SPI in the prj.conf Sweat smile.

Reply
  • I am trying to do the same thing, Zephyr do have a sensor example for the ADXL362.

    /path/to/ncs/zephyr/samples/sensor/adxl362

    As Didrik says, this example uses the sensor.h API library. Don't ask me how to get it to work though, it straight up refused to get the device for 2 hours then randomly started working and I didn't change the example code apart from enabling SPI in the prj.conf Sweat smile.

Children
  • Thank you guys!

    It works!

    <prj.conf>
    
    CONFIG_STDOUT_CONSOLE=y
    CONFIG_SPI=y
    CONFIG_SENSOR=y
    CONFIG_ADXL362=y
    CONFIG_ADXL362_TRIGGER_GLOBAL_THREAD=y
    CONFIG_ADXL362_INTERRUPT_MODE=1
    CONFIG_ADXL362_ABS_REF_MODE=1
    
    ###########ADD BELOW###########################
    # CONFIG_SPI=y
    CONFIG_SPI_3=y
    CONFIG_SPI_3_NRF_SPIM=y
    CONFIG_SPI_3=y 
    CONFIG_SPI_NRFX=y
    CONFIG_MAIN_STACK_SIZE=4096

  • May I ask one more related question?

    I want to configure motion detection function of ADXL362 and let it output H level when it detects movement. This is a simple function.

    How can I achieve this? 

    To do so, you need to write value in a certain register through SPI. 

    However, there is no writing and even reading functions in sensor.h. 

    I added the above spi_test_send function to  /path/to/ncs/zephyr/samples/sensor/adxl362 program but it returns -35 error code. Any help?

  • To be honest, I would like to know this too. I have no experience with SPI and spi_transceive() didn't seem to fail (returned 0) but I haven't a clue how to read the response.

  • Ah found my mistake, needed to initialise the gpio CS for the ADXL362. I can now read the ADXL part ID.

    Yusuke,

    Try this for reading a register from the ADXL362 on the PCA20035 device

    main.c:

    /*
    * Copyright (c) 2012-2014 Wind River Systems, Inc.
    *
    * SPDX-License-Identifier: Apache-2.0
    */
    
    #include <zephyr.h>
    #include <misc/printk.h>
    #include <spi.h>
    #include <gpio.h>
    
    #define cs_controller DT_NORDIC_NRF_SPI_SPI_3_CS_GPIOS_CONTROLLER_0
    #define cd_pin  DT_NORDIC_NRF_SPI_0_CS_GPIOS_PIN_0
    
    static const struct spi_config spi_cfg = {
    	.operation = SPI_WORD_SET(8) | SPI_TRANSFER_MSB,
    	.frequency = 8000000,
    	.slave = 0,
    };
    
    struct device * spi_dev;
    struct device * cs_gpio;
    
    static void spi_init(void)
    {
    	const char* const spiName = "SPI_3";
    	spi_dev = device_get_binding(spiName);
    
    	if (spi_dev == NULL) {
    		printk("Could not get %s device\n", spiName);
    		return;
    	}
    }
    
    void spi_test_send(void)
    {
    	int err;
    	static u8_t tx_buffer[1];
    	static u8_t rx_buffer[1];
    
    	const struct spi_buf tx_buf = {
    		.buf = tx_buffer,
    		.len = sizeof(tx_buffer)
    	};
    	const struct spi_buf_set tx = {
    		.buffers = &tx_buf,
    		.count = 1
    	};
    
    	struct spi_buf rx_buf = {
    		.buf = rx_buffer,
    		.len = sizeof(rx_buffer),
    	};
    	const struct spi_buf_set rx = {
    		.buffers = &rx_buf,
    		.count = 1
    	};
    
    	err = spi_transceive(spi_dev, &spi_cfg, &tx, &rx);
    	if (err) {
    		printk("SPI error: %d\n", err);
    	} else {
    		/* Connect MISO to MOSI for loopback */
    		printk("TX sent: %x\n", tx_buffer[0]);
    		printk("RX recv: %x\n", rx_buffer[0]);
    		tx_buffer[0]++;
    	}
    }
    
    void spi_read_reg(void)
    {
      u8_t cmd =      0x0B;
      u8_t reg_addr = 0x02;
      u8_t value = 0x00;
      void *data = &value;
      int length = 1;
    	u8_t access[2] = { cmd, reg_addr };
    
      gpio_pin_write(cs_gpio, cd_pin, 0);
    
    	const struct spi_buf buf[2] = {
    		{
    			.buf = access,
    			.len = 2
    		},
    		{
    			.buf = data,
    			.len = length
    		}
    	};
    	struct spi_buf_set tx = {
    		.buffers = buf,
    	};
    
    
    	const struct spi_buf_set rx = {
    		.buffers = buf,
    		.count = 2
    	};
    
    	tx.count = 1;
    
    	int spi_result = spi_transceive(spi_dev, &spi_cfg, &tx, &rx);
    
      printk("SPI result: %d\n",spi_result);
      printk("Value: 0x%02X\n", value);
    
      gpio_pin_write(cs_gpio, cd_pin, 1);
    
    }
    
    void cs_setup(void)
    {
    
      cs_gpio = device_get_binding(cs_controller);
    
      if (cs_gpio == NULL) {
        printk("Could not get gpio device\n");
        return;
      }
    
      /* Set cs pin as output */
      gpio_pin_configure(cs_gpio, cd_pin, GPIO_DIR_OUT);
    
      gpio_pin_write(cs_gpio, cd_pin, 1);
    
    }
    
    void main(void)
    {
    	printk("SPIM Example\n");
      cs_setup();
    	spi_init();
    
    	while (1) {
    		//spi_test_send();
        spi_read_reg();
    		k_sleep(1000);
    	}
    }

    prj.conf:

    CONFIG_SERIAL=y
    CONFIG_TRUSTED_EXECUTION_NONSECURE=y
    CONFIG_UART_INTERRUPT_DRIVEN=y
    CONFIG_UART_0_NRF_UARTE=y
    
    # LTE link control
    CONFIG_LTE_LINK_CONTROL=n
    CONFIG_LTE_AUTO_INIT_AND_CONNECT=n
    
    # BSD library
    CONFIG_BSD_LIBRARY=y
    CONFIG_BSD_LIBRARY_TRACE_ENABLED=n
    
    # network
    CONFIG_TEST_RANDOM_GENERATOR=y
    CONFIG_NETWORKING=y
    CONFIG_NET_BUF_USER_DATA_SIZE=1
    CONFIG_NET_SOCKETS_OFFLOAD=y
    CONFIG_NET_SOCKETS=y
    CONFIG_NET_SOCKETS_POSIX_NAMES=y
    CONFIG_NET_RAW_MODE=y
    CONFIG_HEAP_MEM_POOL_SIZE=1024
    
    # SPI
    CONFIG_SPI=y
    CONFIG_SPI_3=y
    CONFIG_SPI_3_NRF_SPIM=y
    CONFIG_SPI_3=y
    CONFIG_SPI_NRFX=y
    CONFIG_MAIN_STACK_SIZE=4096
    
    #CONFIG_SENSOR=y
    #CONFIG_ADXL362=y

    You should get:

    SPM: NS image at 0xc000                                                         
    SPM: NS MSP at 0x20023f98                                                       
    SPM: NS reset vector at 0xe7b1                                                  
    SPM: prepare to jump to Non-Secure image.                                       
    ***** Booting Zephyr OS v1.14.99-ncs2 *****                                     
    SPIM Example                                                                    
    SPI result: 0                                                                   
    Value: 0xf2    

  • sorry for late reply.

    Sadly, it doesn't work. It always reset itself.

    SRAM region             Domain          Permissions
    00 0x00000 0x02000      Secure          rwxl
    01 0x02000 0x04000      Secure          rwxl
    02 0x04000 0x06000      Secure          rwxl
    03 0x06000 0x08000      Secure          rwxl
    04 0x08000 0x0a000      Secure          rwxl
    05 0x0a000 0x0c000      Secure          rwxl
    06 0x0c000 0x0e000      Secure          rwxl
    07 0x0e000 0x10000      Secure          rwxl
    08 0x10000 0x12000      Non-Secure      rwxl
    09 0x12000 0x14000      Non-Secure      rwxl
    10 0x14000 0x16000      Non-Secure      rwxl
    11 0x16000 0x18000      Non-Secure      rwxl
    12 0x18000 0x1a000      Non-Secure      rwxl
    13 0x1a000 0x1c000      Non-Secure      rwxl
    14 0x1c000 0x1e000      Non-Secure      rwxl
    15 0x1e000 0x20000      Non-Secure      rwxl
    16 0x20000 0x22000      Non-Secure      rwxl
    17 0x22000 0x24000      Non-Secure      rwxl
    18 0x24000 0x26000      Non-Secure      rwxl
    19 0x26000 0x28000      Non-Secure      rwxl
    20 0x28000 0x2a000      Non-Secure      rwxl
    21 0x2a000 0x2c000      Non-Secure      rwxl
    22 0x2c000 0x2e000      Non-Secure      rwxl
    23 0x2e000 0x30000      Non-Secure      rwxl
    24 0x30000 0x32000      Non-Secure      rwxl
    25 0x32000 0x34000      Non-Secure      rwxl
    26 0x34000 0x36000      Non-Secure      rwxl
    27 0x36000 0x38000      Non-Secure      rwxl
    28 0x38000 0x3a000      Non-Secure      rwxl
    29 0x3a000 0x3c000      Non-Secure      rwxl
    30 0x3c000 0x3e000      Non-Secure      rwxl
    31 0x3e000 0x40000      Non-Secure      rwxl
    
    Peripheral              Domain          Status
    00 NRF_P0               Non-Secure      OK
    01 NRF_CLOCK            Non-Secure      OK
    02 NRF_RTC1             Non-Secure      OK
    03 NRF_NVMC             Non-Secure      OK
    04 NRF_UARTE1           Non-Secure      OK
    05 NRF_UARTE2           Secure          SKIP
    06 NRF_TWIM2            Non-Secure      OK
    07 NRF_SPIM3            Non-Secure      OK
    08 NRF_TIMER0           Non-Secure      OK
    09 NRF_TIMER1           Non-Secure      OK
    10 NRF_TIMER2           Non-Secure      OK
    11 NRF_SAADC            Non-Secure      OK
    12 NRF_PWM0             Non-Secure      OK
    13 NRF_PWM1             Non-Secure      OK
    14 NRF_PWM2             Non-Secure      OK
    15 NRF_PWM3             Non-Secure      OK
    16 NRF_IPC              Non-Secure      OK
    17 NRF_VMC              Non-Secure      OK
    18 NRF_FPU              Non-Secure      OK
    19 NRF_EGU1             Non-Secure      OK
    20 NRF_EGU2             Non-Secure      OK
    21 NRF_GPIOTE1          Non-Secure      OK
    
    SPM: NS image at 0xc000
    SPM: NS MSP at 0x20003f60
    SPM: NS reset vector at 0xe22d
    SPM: prepare to jump to Non-Secure image.
    ***** Booting Zephyr OS v1.14.99-ncs2 *****
    Flash region            Domain          Permissions
    00 0x00000 0x08000      Secure          rwxl
    01 0x08000 0x10000      Non-Secure      rwxl
    02 0x10000 0x18000      Non-Secure      rwxl
    03 0x18000 0x20000      Non-Secure      rwxl
    04 0x20000 0x28000      Non-Secure      rwxl
    05 0x28000 0x30000      Non-Secure      rwxl
    06 0x30000 0x38000      Non-Secure      rwxl
    07 0x38000 0x40000      Non-Secure      rwxl
    08 0x40000 0x48000      Non-Secure      rwxl
    09 0x48000 0x50000      Non-Secure      rwxl
    10 0x50000 0x58000      Non-Secure      rwxl
    11 0x58000 0x60000      Non-Secure      rwxl
    12 0x60000 0x68000      Non-Secure      rwxl
    13 0x68000 0x70000      Non-Secure      rwxl
    14 0x70000 0x78000      Non-Secure      rwxl
    15 0x78000 0x80000      Non-Secure      rwxl
    16 0x80000 0x88000      Non-Secure      rwxl
    17 0x88000 0x90000      Non-Secure      rwxl
    18 0x90000 0x98000      Non-Secure      rwxl
    19 0x98000 0xa0000      Non-Secure      rwxl
    20 0xa0000 0xa8000      Non-Secure      rwxl
    21 0xa8000 0xb0000      Non-Secure      rwxl
    22 0xb0000 0xb8000      Non-Secure      rwxl
    23 0xb8000 0xc0000      Non-Secure      rwxl
    24 0xc0000 0xc8000      Non-Secure      rwxl
    25 0xc8000 0xd0000      Non-Secure      rwxl
    26 0xd0000 0xd8000      Non-Secure      rwxl
    27 0xd8000 0xe0000      Non-Secure      rwxl
    28 0xe0000 0xe8000      Non-Secure      rwxl
    29 0xe8000 0xf0000      Non-Secure      rwxl
    30 0xf0000 0xf8000      Non-Secure      rwxl
    31 0xf8000 0x100000     Non-Secure      rwxl
    Non-secure callable region 0 placed in flash region 0 with size 32.
    
    
    SRAM region             Domain          Permissions
    00 0x00000 0x02000      Secure          rwxl
    01 0x02000 0x04000      Secure          rwxl
    02 0x04000 0x06000      Secure          rwxl
    03 0x06000 0x08000      Secure          rwxl
    04 0x08000 0x0a000      Secure          rwxl
    05 0x0a000 0x0c000      Secure          rwxl
    06 0x0c000 0x0e000      Secure          rwxl
    07 0x0e000 0x10000      Secure          rwxl
    08 0x10000 0x12000      Non-Secure      rwxl
    09 0x12000 0x14000      Non-Secure      rwxl
    10 0x14000 0x16000      Non-Secure      rwxl
    11 0x16000 0x18000      Non-Secure      rwxl
    12 0x18000 0x1a000      Non-Secure      rwxl
    13 0x1a000 0x1c000      Non-Secure      rwxl

Related