msp430adc12implp.nc
来自「tinyos-2.x.rar」· NC 代码 · 共 658 行 · 第 1/2 页
NC
658 行
/*
* Copyright (c) 2006, Technische Universitaet Berlin
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* - Neither the name of the Technische Universitaet Berlin nor the names
* of its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* - Revision -------------------------------------------------------------
* $Revision: 1.14 $
* $Date: 2008/11/10 14:56:12 $
* @author: Jan Hauer <hauer@tkn.tu-berlin.de>
* ========================================================================
*/
#include <Msp430Adc12.h>
module Msp430Adc12ImplP @safe()
{
provides {
interface Init;
interface Msp430Adc12SingleChannel as SingleChannel[uint8_t id];
interface Msp430Adc12MultiChannel as MultiChannel[uint8_t id];
interface Msp430Adc12Overflow as Overflow[uint8_t id];
interface AsyncStdControl as DMAExtension[uint8_t id];
}
uses {
interface ArbiterInfo as ADCArbiterInfo;
interface HplAdc12;
interface Msp430Timer as TimerA;;
interface Msp430TimerControl as ControlA0;
interface Msp430TimerControl as ControlA1;
interface Msp430Compare as CompareA0;
interface Msp430Compare as CompareA1;
interface HplMsp430GeneralIO as Port60;
interface HplMsp430GeneralIO as Port61;
interface HplMsp430GeneralIO as Port62;
interface HplMsp430GeneralIO as Port63;
interface HplMsp430GeneralIO as Port64;
interface HplMsp430GeneralIO as Port65;
interface HplMsp430GeneralIO as Port66;
interface HplMsp430GeneralIO as Port67;
}
}
implementation
{
#ifdef ADC12_TIMERA_ENABLED
#warning Accessing TimerA for ADC12
#endif
enum {
SINGLE_DATA = 1,
SINGLE_DATA_REPEAT = 2,
MULTIPLE_DATA = 4,
MULTIPLE_DATA_REPEAT = 8,
MULTI_CHANNEL = 16,
CONVERSION_MODE_MASK = 0x1F,
ADC_BUSY = 32, /* request pending */
USE_TIMERA = 64, /* TimerA used for SAMPCON signal */
ADC_OVERFLOW = 128,
};
uint8_t state; /* see enum above */
uint16_t resultBufferLength; /* length of buffer */
uint16_t *COUNT_NOK(resultBufferLength) resultBufferStart;
uint16_t resultBufferIndex; /* offset into buffer */
uint8_t numChannels; /* number of channels (multi-channel conversion) */
uint8_t clientID; /* ID of client that called getData() */
command error_t Init.init()
{
adc12ctl0_t ctl0;
call HplAdc12.stopConversion();
ctl0 = call HplAdc12.getCtl0();
ctl0.adc12tovie = 1;
ctl0.adc12ovie = 1;
call HplAdc12.setCtl0(ctl0);
return SUCCESS;
}
void prepareTimerA(uint16_t interval, uint16_t csSAMPCON, uint16_t cdSAMPCON)
{
#ifdef ADC12_TIMERA_ENABLED
msp430_compare_control_t ccResetSHI = {
ccifg : 0, cov : 0, out : 0, cci : 0, ccie : 0,
outmod : 0, cap : 0, clld : 0, scs : 0, ccis : 0, cm : 0 };
call TimerA.setMode(MSP430TIMER_STOP_MODE);
call TimerA.clear();
call TimerA.disableEvents();
call TimerA.setClockSource(csSAMPCON);
call TimerA.setInputDivider(cdSAMPCON);
call ControlA0.setControl(ccResetSHI);
call CompareA0.setEvent(interval-1);
call CompareA1.setEvent((interval-1)/2);
#endif
}
void startTimerA()
{
#ifdef ADC12_TIMERA_ENABLED
msp430_compare_control_t ccSetSHI = {
ccifg : 0, cov : 0, out : 1, cci : 0, ccie : 0,
outmod : 0, cap : 0, clld : 0, scs : 0, ccis : 0, cm : 0 };
msp430_compare_control_t ccResetSHI = {
ccifg : 0, cov : 0, out : 0, cci : 0, ccie : 0,
outmod : 0, cap : 0, clld : 0, scs : 0, ccis : 0, cm : 0 };
msp430_compare_control_t ccRSOutmod = {
ccifg : 0, cov : 0, out : 0, cci : 0, ccie : 0,
outmod : 7, cap : 0, clld : 0, scs : 0, ccis : 0, cm : 0 };
// manually trigger first conversion, then switch to Reset/set conversionMode
call ControlA1.setControl(ccResetSHI);
call ControlA1.setControl(ccSetSHI);
//call ControlA1.setControl(ccResetSHI);
call ControlA1.setControl(ccRSOutmod);
call TimerA.setMode(MSP430TIMER_UP_MODE); // go!
#endif
}
void configureAdcPin( uint8_t inch )
{
#ifdef ADC12_P6PIN_AUTO_CONFIGURE
switch (inch)
{
case 0: call Port60.selectModuleFunc(); call Port60.makeInput(); break;
case 1: call Port61.selectModuleFunc(); call Port61.makeInput(); break;
case 2: call Port62.selectModuleFunc(); call Port62.makeInput(); break;
case 3: call Port63.selectModuleFunc(); call Port63.makeInput(); break;
case 4: call Port64.selectModuleFunc(); call Port64.makeInput(); break;
case 5: call Port65.selectModuleFunc(); call Port65.makeInput(); break;
case 6: call Port66.selectModuleFunc(); call Port66.makeInput(); break;
case 7: call Port67.selectModuleFunc(); call Port67.makeInput(); break;
}
#endif
}
void resetAdcPin( uint8_t inch )
{
#ifdef ADC12_P6PIN_AUTO_CONFIGURE
switch (inch)
{
case 0: call Port60.selectIOFunc(); break;
case 1: call Port61.selectIOFunc(); break;
case 2: call Port62.selectIOFunc(); break;
case 3: call Port63.selectIOFunc(); break;
case 4: call Port64.selectIOFunc(); break;
case 5: call Port65.selectIOFunc(); break;
case 6: call Port66.selectIOFunc(); break;
case 7: call Port67.selectIOFunc(); break;
}
#endif
}
async command error_t SingleChannel.configureSingle[uint8_t id](
const msp430adc12_channel_config_t *config)
{
error_t result = ERESERVE;
#ifdef ADC12_CHECK_ARGS
if (!config)
return EINVAL;
#endif
atomic {
if (state & ADC_BUSY)
return EBUSY;
if (call ADCArbiterInfo.userId() == id){
adc12ctl1_t ctl1 = {
adc12busy: 0,
conseq: 0,
adc12ssel: config->adc12ssel,
adc12div: config->adc12div,
issh: 0,
shp: 1,
shs: 0,
cstartadd: 0
};
adc12memctl_t memctl = {
inch: config->inch,
sref: config->sref,
eos: 1
};
adc12ctl0_t ctl0 = call HplAdc12.getCtl0();
ctl0.msc = 1;
ctl0.sht0 = config->sht;
ctl0.sht1 = config->sht;
state = SINGLE_DATA;
call HplAdc12.setCtl0(ctl0);
call HplAdc12.setCtl1(ctl1);
call HplAdc12.setMCtl(0, memctl);
call HplAdc12.setIEFlags(0x01);
result = SUCCESS;
}
}
return result;
}
async command error_t SingleChannel.configureSingleRepeat[uint8_t id](
const msp430adc12_channel_config_t *config,
uint16_t jiffies)
{
error_t result = ERESERVE;
#ifdef ADC12_CHECK_ARGS
#ifndef ADC12_TIMERA_ENABLED
if (jiffies>0)
return EINVAL;
#endif
if (!config || jiffies == 1 || jiffies == 2)
return EINVAL;
#endif
atomic {
if (state & ADC_BUSY)
return EBUSY;
if (call ADCArbiterInfo.userId() == id) {
adc12ctl1_t ctl1 = {
adc12busy: 0,
conseq: 2,
adc12ssel: config->adc12ssel,
adc12div: config->adc12div,
issh: 0,
shp: 1,
shs: (jiffies == 0) ? 0 : 1,
cstartadd: 0
};
adc12memctl_t memctl = {
inch: config->inch,
sref: config->sref,
eos: 1
};
adc12ctl0_t ctl0 = call HplAdc12.getCtl0();
ctl0.msc = (jiffies == 0) ? 1 : 0;
ctl0.sht0 = config->sht;
ctl0.sht1 = config->sht;
state = SINGLE_DATA_REPEAT;
call HplAdc12.setCtl0(ctl0);
call HplAdc12.setCtl1(ctl1);
call HplAdc12.setMCtl(0, memctl);
call HplAdc12.setIEFlags(0x01);
if (jiffies){
state |= USE_TIMERA;
prepareTimerA(jiffies, config->sampcon_ssel, config->sampcon_id);
}
result = SUCCESS;
}
}
return result;
}
async command error_t SingleChannel.configureMultiple[uint8_t id](
const msp430adc12_channel_config_t *config,
uint16_t *buf, uint16_t length, uint16_t jiffies)
{
error_t result = ERESERVE;
#ifdef ADC12_CHECK_ARGS
#ifndef ADC12_TIMERA_ENABLED
if (jiffies>0)
return EINVAL;
#endif
if (!config || !buf || !length || jiffies == 1 || jiffies == 2)
return EINVAL;
#endif
atomic {
if (state & ADC_BUSY)
return EBUSY;
if (call ADCArbiterInfo.userId() == id){
adc12ctl1_t ctl1 = {
adc12busy: 0,
conseq: (length > 16) ? 3 : 1,
adc12ssel: config->adc12ssel,
adc12div: config->adc12div,
issh: 0,
shp: 1,
shs: (jiffies == 0) ? 0 : 1,
cstartadd: 0
};
adc12memctl_t memctl = {
inch: config->inch,
sref: config->sref,
eos: 0
};
uint16_t i, mask = 1;
adc12ctl0_t ctl0 = call HplAdc12.getCtl0();
ctl0.msc = (jiffies == 0) ? 1 : 0;
ctl0.sht0 = config->sht;
ctl0.sht1 = config->sht;
state = MULTIPLE_DATA;
resultBufferStart = NULL;
resultBufferLength = length;
resultBufferStart = buf;
resultBufferIndex = 0;
call HplAdc12.setCtl0(ctl0);
call HplAdc12.setCtl1(ctl1);
for (i=0; i<(length-1) && i < 15; i++)
call HplAdc12.setMCtl(i, memctl);
memctl.eos = 1;
call HplAdc12.setMCtl(i, memctl);
call HplAdc12.setIEFlags(mask << i);
if (jiffies){
state |= USE_TIMERA;
prepareTimerA(jiffies, config->sampcon_ssel, config->sampcon_id);
}
result = SUCCESS;
}
}
return result;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?