blob: 23cb8958f476cf2257ef471276ae9e8b18187be4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/* This file defines the HAL implementations within this MCU */
#ifndef MCU_HAL_H
#define MCU_HAL_H
#ifdef __cplusplus
extern "C" {
#endif
/* this is a native build and these pins are not real. They are used only
* for simulated HAL devices */
enum native_adc_channel {
MCU_ADC_CHANNEL_0 = 0,
MCU_ADC_CHANNEL_1 = 1,
MCU_ADC_CHANNEL_2 = 2,
MCU_ADC_CHANNEL_3 = 3,
MCU_ADC_CHANNEL_4 = 4,
MCU_ADC_CHANNEL_5 = 5,
};
/* This creates a new ADC object for this ADC source */
struct hal_adc *
native_adc_random_create(enum native_adc_channel chan);
/* This creates a new ADC object for this ADC source */
struct hal_adc *
native_adc_mmm_create(enum native_adc_channel chan );
/* This creates a new ADC object for this ADC source */
struct hal_adc *
native_adc_file_create(enum native_adc_channel chan, const char *fname);
#ifdef __cplusplus
}
#endif
#endif /* MCU_HAL_H */