mirror of
https://github.com/Fishwaldo/bl_mcu_sdk.git
synced 2025-07-11 23:38:57 +00:00
[fix][examples/adc/boot/i2s] delete unused flag noun in xxx_register
This commit is contained in:
parent
c932e33c61
commit
3f8f00e4df
13 changed files with 16 additions and 81 deletions
|
@ -43,7 +43,7 @@ int main(void)
|
|||
adc_channel_cfg.num = 1;
|
||||
|
||||
MSG("adc one-shot differential test case \r\n");
|
||||
adc_register(ADC0_INDEX, "adc_one_diff", DEVICE_OFLAG_STREAM_RX);
|
||||
adc_register(ADC0_INDEX, "adc_one_diff");
|
||||
|
||||
adc_test = device_find("adc_one_diff");
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ int main(void)
|
|||
adc_channel_cfg.num = 1;
|
||||
|
||||
MSG("adc continue single ended test case \r\n");
|
||||
adc_register(ADC0_INDEX, "adc_continue_single", DEVICE_OFLAG_STREAM_RX);
|
||||
adc_register(ADC0_INDEX, "adc_continue_single");
|
||||
|
||||
adc_test = device_find("adc_continue_single");
|
||||
|
||||
|
|
|
@ -174,7 +174,7 @@ int main(void)
|
|||
adc_channel_cfg.neg_channel = negChList;
|
||||
adc_channel_cfg.num = 1;
|
||||
|
||||
adc_register(ADC0_INDEX, "adc_key", DEVICE_OFLAG_STREAM_RX);
|
||||
adc_register(ADC0_INDEX, "adc_key");
|
||||
|
||||
adc_key = device_find("adc_key");
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ int main(void)
|
|||
adc_channel_cfg.num = 1;
|
||||
|
||||
MSG("adc one-shot differential test case \r\n");
|
||||
adc_register(ADC0_INDEX, "adc_one_diff", DEVICE_OFLAG_STREAM_RX);
|
||||
adc_register(ADC0_INDEX, "adc_one_diff");
|
||||
|
||||
adc_test = device_find("adc_one_diff");
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ int main(void)
|
|||
adc_channel_cfg.num = 1;
|
||||
|
||||
MSG("adc one-shot single ended test case \r\n");
|
||||
adc_register(ADC0_INDEX, "adc_one_single", DEVICE_OFLAG_STREAM_RX);
|
||||
adc_register(ADC0_INDEX, "adc_one_single");
|
||||
|
||||
adc_test = device_find("adc_one_single");
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ int main(void)
|
|||
adc_channel_cfg.num = 2;
|
||||
|
||||
MSG("adc one-shot single ended test case \r\n");
|
||||
adc_register(ADC0_INDEX, "adc_one_single", DEVICE_OFLAG_STREAM_RX);
|
||||
adc_register(ADC0_INDEX, "adc_one_single");
|
||||
|
||||
adc_test = device_find("adc_one_single");
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ int main(void)
|
|||
adc_channel_cfg.num = 1;
|
||||
|
||||
MSG("adc tsen test case \r\n");
|
||||
adc_register(ADC0_INDEX, "adc_tsen", DEVICE_OFLAG_STREAM_RX);
|
||||
adc_register(ADC0_INDEX, "adc_tsen");
|
||||
|
||||
adc_tsen = device_find("adc_tsen");
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ int main(void)
|
|||
adc_channel_cfg.neg_channel = negChList;
|
||||
adc_channel_cfg.num = 1;
|
||||
|
||||
adc_register(ADC0_INDEX, "adc_vbat_test", DEVICE_OFLAG_STREAM_RX);
|
||||
adc_register(ADC0_INDEX, "adc_vbat_test");
|
||||
|
||||
vbat_test = device_find("adc_vbat_test");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue