Karl Palsson d035a9cd39 stm32f1: adc: use common api for calibration routines
Use same names as adv-v2 peripheral uses. F1 is the only v1 peripheral
adc that has calibration modes at all.

Old:
	adc_calibration(ADC1);  // blocking call

New (blocking):
	adc_calibrate(ADC1);

New (asynch):
	adc_calibrate_async(ADC1);
	// do stuff
	adc_is_calibrating(ADC1);  // false when calibration finished

Old routines are preserved but marked deprecated for now.
2016-09-12 23:29:21 +00:00
..
2016-03-08 08:52:54 -08:00
2016-08-18 22:08:58 +00:00
2016-08-18 22:07:36 +00:00
2016-08-18 22:08:58 +00:00
2016-03-08 08:52:54 -08:00
2015-12-14 23:42:27 +01:00