/usr/include/gpsim/a2d_v2.h is in gpsim-dev 0.29.0-2+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 | /*
Copyright (C) 2006 T. Scott Dattalo
Copyright (C) 2008,2015 Roy R Rankin
This file is part of the libgpsim library of gpsim
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, see
<http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
// For A2D modules which have ADCON0, ADCON1 and ADCON2 registers
#ifndef __A2D_V2_H__
#define __A2D_v2_H__
#include "comparator.h"
#include "a2dconverter.h"
#include "registers.h"
#include "trigger.h"
#include "intcon.h"
#include "pir.h"
class PinModule;
class pic_processor;
class ADCON0_V2;
//---------------------------------------------------------
// ADCON1
//
class ADCON1_V2 : public sfr_register
{
public:
enum PCFG_bits
{
PCFG0 = 1<<0,
PCFG1 = 1<<1,
PCFG2 = 1<<2,
PCFG3 = 1<<3,
VCFG0 = 1<<4,
VCFG1 = 1<<5,
};
ADCON1_V2(Processor *pCpu, const char *pName, const char *pDesc);
~ADCON1_V2();
virtual void put(unsigned int new_value);
void setChanTable(
unsigned int m0, unsigned int m1, unsigned int m2, unsigned int m3,
unsigned int m4, unsigned int m5, unsigned int m6, unsigned int m7,
unsigned int m8, unsigned int m9, unsigned int m10, unsigned int m11,
unsigned int m12, unsigned int m13, unsigned int m14, unsigned int m15);
void setChannelConfiguration(unsigned int cfg, unsigned int bitMask);
virtual PinModule *get_A2Dpin(unsigned int channel);
virtual double getChannelVoltage(unsigned int channel);
virtual double getVrefHi();
virtual double getVrefLo();
void setVrefHiChannel(unsigned int channel);
void setVrefLoChannel(unsigned int channel);
void setValidCfgBits(unsigned int m, unsigned int s);
void setNumberOfChannels(unsigned int);
void setIOPin(unsigned int, PinModule *);
void setAdcon0(ADCON0_V2 *adcon0){ m_adcon0 = adcon0;}
virtual unsigned int get_adc_configmask(unsigned int);
virtual void setVoltRef(double x) {;}
virtual int getVrefHiChan() { return m_vrefHiChan;}
virtual int getVrefLoChan() { return m_vrefLoChan;}
private:
protected:
PinModule **m_AnalogPins;
unsigned int m_nAnalogChannels;
unsigned int mValidCfgBits;
unsigned int mCfgBitShift;
int m_vrefHiChan;
int m_vrefLoChan;
unsigned int mIoMask;
ADCON0_V2 *m_adcon0; // if set use to get VCFG0 and VCFG1
static const unsigned int cMaxConfigurations=16;
/* configuration bits is an array of 8-bit masks definining whether or not
* a given channel is analog or digital
*/
unsigned int m_configuration_bits[cMaxConfigurations];
};
//---------------------------------------------------------
// ADCON2
//
class ADCON2_V2 : public sfr_register, public TriggerObject
{
public:
enum
{
ADCS0 = 1<<0,
ADCS1 = 1<<1,
ADCS2 = 1<<2,
ACQT0 = 1<<3,
ACQT1 = 1<<4,
ACQT2 = 1<<5,
ADFM = 1<<7
};
ADCON2_V2(Processor *pCpu, const char *pName, const char *pDesc);
char get_nacq();
char get_tad();
bool get_adfm();
private:
};
//---------------------------------------------------------
// ADCON0
//
class ADCON0_V2 : public sfr_register, public TriggerObject
{
public:
enum
{
ADON = 1<<0,
GO = 1<<1,
CHS0 = 1<<2,
CHS1 = 1<<3,
CHS2 = 1<<4,
CHS3 = 1<<5,
VCFG0 = 1<<6, // for 18f1220
VCFG1 = 1<<7, // for 18f1220
};
enum AD_states
{
AD_IDLE,
AD_ACQUIRING,
AD_CONVERTING
};
ADCON0_V2(Processor *pCpu, const char *pName, const char *pDesc);
void start_conversion();
void stop_conversion();
virtual void set_interrupt();
virtual void callback();
virtual void callback_print() {cout << name() << " has callback, ID = " << CallBackID << '\n';}
void put(unsigned int new_value);
void put_conversion();
void setAdres(sfr_register *);
void setAdresLow(sfr_register *);
void setAdcon1(ADCON1_V2 *);
void setAdcon2(ADCON2_V2 *);
void setIntcon(INTCON *);
void setPir(PIR1v2 *);
void setA2DBits(unsigned int);
void setChannel_Mask(unsigned int ch_mask) { channel_mask = ch_mask; }
void setRCtime(double);
void set_ctmu_stim(stimulus *_ctmu_stim);
void attach_ctmu_stim();
void detach_ctmu_stim();
private:
sfr_register *adres;
sfr_register *adresl;
ADCON1_V2 *adcon1;
ADCON2_V2 *adcon2;
INTCON *intcon;
PIR1v2 *pir1v2;
double m_dSampledVoltage;
double m_dSampledVrefHi;
double m_dSampledVrefLo;
double m_RCtime;
unsigned int m_A2DScale;
unsigned int m_nBits;
guint64 future_cycle;
unsigned int ad_state;
unsigned int Tad;
unsigned int Tacq;
unsigned int channel_mask;
stimulus *ctmu_stim;
int active_stim; // channel with active stimulus
};
// Channels defined in ANSEL rather than ADCON1
class ADCON1_2B : public ADCON1_V2
{
public:
enum
{
NVCFG0 = 1<<0, // Negative Voltage Reference Configuration bits
NVCFG1 = 1<<1,
PVCFG0 = 1<<2, // Positive Voltage Reference Configuration bits
PVCFG1 = 1<<3,
TRIGSEL = 1<<7, // Special Trigger Select bit
// the following are special A/D channels
CTMU = 0x1d,
DAC = 0x1e,
FVR_BUF2 = 0x1f
};
ADCON1_2B(Processor *pCpu, const char *pName, const char *pDesc);
virtual double getChannelVoltage(unsigned int channel);
virtual void put(unsigned int new_value);
virtual double getVrefHi();
virtual double getVrefLo();
void update_ctmu(double _Vctmu) { Vctmu = _Vctmu;}
void update_dac(double _Vdac) { Vdac = _Vdac;}
virtual void setVoltRef(double _Vfvr_buf2) { Vfvr_buf2 = _Vfvr_buf2;}
virtual PinModule *get_A2Dpin(unsigned int channel);
virtual void ctmu_trigger();
virtual void ccp_trigger();
private:
double Vctmu;
double Vdac;
double Vfvr_buf2;
};
class ANSEL_2B : public sfr_register
{
public:
ANSEL_2B(Processor *pCpu, const char *pName, const char *pDesc);
void put(unsigned int new_value);
void put_value(unsigned int new_value);
void setIOPin(unsigned int channel, PinModule *port, ADCON1_2B *adcon1);
private:
PinModule *m_AnalogPins[8];
int analog_channel[8];
unsigned int mask;
};
class FVRCON_V2 : public sfr_register, public TriggerObject
{
public:
enum
{
FVRS0 = 1<<4,
FVRS1 = 1<<5,
FVRRDY = 1<<6,
FVREN = 1<<7,
};
FVRCON_V2(Processor *, const char *pName, const char *pDesc=0, unsigned int bitMask= 0xf0);
virtual void put(unsigned int new_value);
virtual void put_value(unsigned int new_value);
void set_adcon1(ADCON1_V2 *_adcon1) { adcon1 = _adcon1;}
void set_cmModule(ComparatorModule2 *_cmModule) { cmModule = _cmModule;}
void set_daccon0(DACCON0 *_daccon0) { daccon0_list.push_back(_daccon0);}
void set_cpscon0(CPSCON0 *_cpscon0) { cpscon0 = _cpscon0;}
private:
unsigned int mask_writable;
virtual void callback();
virtual void callback_print() {cout << name() << " has callback, ID = " << CallBackID << '\n';}
guint64 future_cycle;
double compute_FVR(unsigned int);
ADCON1_V2 *adcon1;
DACCON0 *daccon0;
vector<DACCON0 *> daccon0_list;
ComparatorModule2 *cmModule;
CPSCON0 *cpscon0;
};
class DACCON0_V2 : public DACCON0
{
public:
DACCON0_V2(Processor *pCpu, const char *pName, const char *pDesc=0,
unsigned int bitMask= 0xe6, unsigned int bit_res = 32) :
DACCON0(pCpu, pName, pDesc, bitMask, bit_res)
{ adcon1 = 0;}
virtual void set_adcon1(ADCON1_2B *_adcon1) { adcon1 = _adcon1;}
virtual void compute_dac(unsigned int value);
virtual double get_Vhigh(unsigned int value);
private:
ADCON1_2B *adcon1;
};
#endif // __A2D_V2_H__
|