1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/hdc1000: do normal assignment instead of memcpy

This commit is contained in:
Kees Bakker 2019-01-06 22:54:44 +01:00
parent 2918d06e9c
commit 5bb50ea6a5

View File

@ -40,7 +40,7 @@ int hdc1000_init(hdc1000_t *dev, const hdc1000_params_t *params)
uint16_t tmp;
/* write device descriptor */
memcpy(&dev->p, params, sizeof(hdc1000_params_t));
dev->p = *params;
/* try if we can interact with the device by reading its manufacturer ID */
i2c_acquire(dev->p.i2c);