| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /*
- * Copyright (c) 2022 OpenLuat & AirM2M
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy of
- * this software and associated documentation files (the "Software"), to deal in
- * the Software without restriction, including without limitation the rights to
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
- * the Software, and to permit persons to whom the Software is furnished to do so,
- * subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- */
- #include "luat_adc.h"
- #include "luat_base.h"
- #include "core_adc.h"
- #include "platform_define.h"
- #define LUAT_LOG_TAG "luat.adc"
- #include "luat_log.h"
- int luat_adc_open(int ch, void *args)
- {
- switch (ch)
- {
- case 0:
- return 0;
- case 1:
- GPIO_Iomux(GPIOC_00, 2);
- GPIO_PullConfig(GPIOC_00, 0, 0);
- break;
- case 2:
- GPIO_Iomux(GPIOC_01, 2);
- GPIO_PullConfig(GPIOC_01, 0, 0);
- break;
- case 3:
- return -1;
- case 4:
- GPIO_Iomux(GPIOC_03, 2);
- GPIO_PullConfig(GPIOC_03, 0, 0);
- break;
- case 5:
- GPIO_Iomux(GPIOC_04, 2);
- GPIO_PullConfig(GPIOC_04, 0, 0);
- break;
- case 6:
- GPIO_Iomux(GPIOC_05, 2);
- GPIO_PullConfig(GPIOC_05, 0, 0);
- break;
- default:
- return -1;
- }
- ADC_ChannelOnOff(ch, 1);
- return 0;
- }
- int luat_adc_global_config(int tp, int val)
- {
- switch(tp)
- {
- case ADC_SET_GLOBAL_RANGE:
- ADC_IntelResistance(val);
- return 0;
- }
- return -1;
- }
- int luat_adc_read(int ch, int *val, int *val2)
- {
- int voltage = 0;
- voltage = ADC_GetChannelValue(ch, val2);
- *val = voltage;
- return 0;
- }
- int luat_adc_close(int ch){
- switch (ch)
- {
- case 1:
- GPIO_PullConfig(GPIOC_00, 1, 1);
- GPIO_Iomux(GPIOC_00, 1);
- break;
- case 2:
- GPIO_PullConfig(GPIOC_01, 1, 1);
- GPIO_Iomux(GPIOC_01, 1);
- break;
- case 4:
- GPIO_PullConfig(GPIOC_03, 1, 1);
- GPIO_Iomux(GPIOC_03, 1);
- break;
- case 5:
- GPIO_PullConfig(GPIOC_04, 1, 1);
- GPIO_Iomux(GPIOC_04, 1);
- break;
- case 6:
- GPIO_PullConfig(GPIOC_05, 1, 1);
- GPIO_Iomux(GPIOC_05, 1);
- break;
- default:
- return -1;
- }
- if (ch)
- ADC_ChannelOnOff(ch, 0);
- return 0;
- }
|