Code style fixes for MS5611

This commit is contained in:
UncleRus 2016-12-24 22:26:48 +05:00
parent 34d783a289
commit b675ae6f29
2 changed files with 42 additions and 38 deletions

View file

@ -23,9 +23,10 @@ void user_init(void)
uart_set_baud(0, 115200);
printf("SDK version:%s\n\n", sdk_system_get_sdk_version());
ms561101ba03_config_data_t conf = {0,0,0,0,0,0};
ms561101ba03_result_t result = {0,0};
ms561101ba03_t device= {MS561101BA03_ADDR_CSB_LOW, MS561101BA03_OSR_4096, conf, result, 0};
ms561101ba03_t device = {
.addr = MS561101BA03_ADDR_CSB_LOW,
.osr = MS561101BA03_OSR_4096,
};
while (!ms561101ba03_init(&device))
printf("Device not found\n");