stm32f2xx_adc.c (c1d5b9add7b04661bedef9a3379a8b82547b53db) stm32f2xx_adc.c (e688df6bc4549f28534cdb001f168b8caae55b0c)
1/*
2 * STM32F2XX ADC
3 *
4 * Copyright (c) 2014 Alistair Francis <alistair@alistair23.me>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights

--- 11 unchanged lines hidden (view full) ---

20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
25#include "qemu/osdep.h"
26#include "hw/sysbus.h"
27#include "hw/hw.h"
1/*
2 * STM32F2XX ADC
3 *
4 * Copyright (c) 2014 Alistair Francis <alistair@alistair23.me>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights

--- 11 unchanged lines hidden (view full) ---

20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
25#include "qemu/osdep.h"
26#include "hw/sysbus.h"
27#include "hw/hw.h"
28#include "qapi/error.h"
29#include "qemu/log.h"
30#include "hw/adc/stm32f2xx_adc.h"
31
32#ifndef STM_ADC_ERR_DEBUG
33#define STM_ADC_ERR_DEBUG 0
34#endif
35
36#define DB_PRINT_L(lvl, fmt, args...) do { \

--- 270 unchanged lines hidden ---
28#include "qemu/log.h"
29#include "hw/adc/stm32f2xx_adc.h"
30
31#ifndef STM_ADC_ERR_DEBUG
32#define STM_ADC_ERR_DEBUG 0
33#endif
34
35#define DB_PRINT_L(lvl, fmt, args...) do { \

--- 270 unchanged lines hidden ---