Karl Palsson 23cf491501 stm32: adc-v2: extract common calibration code
Extract the calibration code from the f0, and share it with the other
adc-v2 peripheral users (f0,l0,f3,l4)

Uses the same naming set of is/async naming conventions requested by the
RTOS guys instead of having blocking only calls.

Old code:
	adc_calibrate_start(ADC);
	adc_calibrate_wait_finish(ADC);

New code (blocking):
	adc_calibrate(ADC);

New code (asynch):
	adc_calibrate_async(ADC);
	// do stuff
	adc_is_calibrating(ADC);  // will be false when it's finished.

Old code for f0 is still available, but marked deprecated.
2016-09-12 23:29:12 +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