The address field should be placed at the highest bits of address and slv_wr_status registers. Instead of breaking the address into two parts and fill in each register, move the address to the highest bits and write to the registers respectively.
Breaking change: if you fill-in the SPI address filed in a previous version in some way and it works correctly, you still have to rewrite the address, in a more intuitive way.
*/
struct spi_transaction_t {
uint32_t flags; ///< Bitwise OR of SPI_TRANS_* flags
- uint16_t command; ///< Command data. Specific length was given when device was added to the bus.
- uint64_t address; ///< Address. Specific length was given when device was added to the bus.
+ uint16_t command; ///< Command data, of which the length is set in the command_bits of spi_device_interface_config_t.
+ uint64_t addr; ///< Address data, of which the length is set in the address_bits of spi_device_interface_config_t.
+ ///< <b>NOTE: this field is re-written to be used in a new way.</b>
+ ///< - Example: write 0x123400 and address_bits=24 to send address of 0x12, 0x34, 0x00.
size_t length; ///< Total data length, in bits
size_t rxlength; ///< Total data length received, if different from length. (0 defaults this to the value of ``length``)
void *user; ///< User-defined variable. Can be used to store eg transaction ID.
host->hw->miso_dlen.usr_miso_dbitlen=trans->rxlength-1;
host->hw->user2.usr_command_value=trans->command;
+
+ // NOTE: WE CHANGED THE WAY USING ADDRESS FIELD. Now address should be filled in, in the following format:
+ // Example: write 0x123400 and address_bits=24 to send address 0x12, 0x34, 0x00 (in previous version, you may have to write 0x12340000)
+ // shift the address to MSB of addr (and maybe slv_wr_status) register.
+ // output address will be sent from MSB to LSB of addr register, then comes the MSB to LSB of slv_wr_status register.
if (dev->cfg.address_bits>32) {
- host->hw->addr=trans->address >> 32;
- host->hw->slv_wr_status=trans->address & 0xffffffff;
+ host->hw->addr = trans->addr >> (dev->cfg.address_bits - 32);
+ host->hw->slv_wr_status = trans->addr << (64 - dev->cfg.address_bits);
} else {
- host->hw->addr=trans->address & 0xffffffff;
+ host->hw->addr = trans->addr << (32 - dev->cfg.address_bits);
}
host->hw->user.usr_mosi=(trans->tx_buffer!=NULL || (trans->flags & SPI_TRANS_USE_TXDATA))?1:0;
host->hw->user.usr_miso=(trans->rx_buffer!=NULL || (trans->flags & SPI_TRANS_USE_RXDATA))?1:0;
t.length=num_bytes*8;
t.tx_buffer=sendbuf;
t.rx_buffer=recvbuf;
- t.address=0xA00000000000000FL;
+ t.addr=0xA00000000000000FL;
t.command=0x55;
printf("Transmitting %d bytes...\n", num_bytes);
};
uint32_t val;
} cmd;
- uint32_t addr; /*addr to slave / from master */
+ uint32_t addr; /*addr to slave / from master. SPI transfer from the MSB to the LSB. If length > 32 bits, then address continues from MSB of slv_wr_status.*/
union {
struct {
uint32_t reserved0: 10; /*reserved*/