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-08-18 23:51:49 +00:00
2015-10-14 22:15:15 +00:00
2015-10-06 00:53:51 +00:00
2015-10-14 22:15:15 +00:00
2015-11-13 02:13:31 +00:00
2015-02-20 19:40:23 -08:00
2015-11-13 01:15:17 +00:00
2016-08-15 22:44:36 +00:00
2015-11-13 01:15:17 +00:00
2015-10-06 00:53:51 +00:00
2016-03-30 16:59:57 +00:00