/usr/include/gpsim/a2dconverter.h is in gpsim-dev 0.26.1-1.
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 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 | /*
Copyright (C) 2006 T. Scott Dattalo
Copyright (C) 2009 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>.
*/
#ifndef __A2DCONVERTER_H__
#define __A2DCONVERTER_H__
#include "registers.h"
#include "trigger.h"
#include "intcon.h"
#include "pir.h"
class PinModule;
class pic_processor;
//---------------------------------------------------------
// ADRES
//
/*
class ADRES : public sfr_register
{
public:
void put(int new_value);
};
*/
/*
AD_IN_SignalControl is used to set an ADC pin as input
regardless of the setting to the TRIS register
*/
class AD_IN_SignalControl : public SignalControl
{
public:
AD_IN_SignalControl(){}
~AD_IN_SignalControl(){}
char getState() { return '1'; }
void release() { }
};
//---------------------------------------------------------
// ADCON1
//
class ADCON1 : public sfr_register
{
public:
enum PCFG_bits
{
PCFG0 = 1<<0,
PCFG1 = 1<<1,
PCFG2 = 1<<2,
PCFG3 = 1<<3, // 16f87x etc.
VCFG0 = 1<<4, // 16f88
VCFG1 = 1<<5, // 16f88
ADCS2 = 1<<6,
ADFM = 1<<7 // Format Result select bit
};
ADCON1(Processor *pCpu, const char *pName, const char *pDesc);
virtual void put(unsigned int new_value);
virtual void put_value(unsigned int new_value);
void setChannelConfiguration(unsigned int cfg, unsigned int bitMask);
void setVrefLoConfiguration(unsigned int cfg, unsigned int channel);
void setVrefHiConfiguration(unsigned int cfg, unsigned int channel);
unsigned int getVrefHiChannel(unsigned int cfg);
unsigned int getVrefLoChannel(unsigned int cfg);
double getChannelVoltage(unsigned int channel);
double getVrefHi();
double getVrefLo();
void setValidCfgBits(unsigned int m, unsigned int s);
void setNumberOfChannels(unsigned int);
unsigned int getNumberOfChannels() { return(m_nAnalogChannels);}
void setIOPin(unsigned int, PinModule *);
void setVoltRef(unsigned int, float);
int get_cfg(unsigned int);
virtual unsigned int get_adc_configmask(unsigned int);
virtual void set_cfg_index(unsigned int index) { cfg_index = index;}
void set_channel_in(unsigned int channel, bool on);
void setADCnames();
void setValidBits(unsigned int mask) { valid_bits = mask;}
private:
PinModule **m_AnalogPins;
float *m_voltageRef;
unsigned int m_nAnalogChannels;
unsigned int mValidCfgBits;
unsigned int mCfgBitShift;
unsigned int mIoMask;
unsigned int cfg_index;
unsigned int valid_bits;
static const unsigned int cMaxConfigurations=16;
/* Vrefhi/lo_position - this is an array that tells which
* channel the A/D converter's voltage reference(s) are located.
* The index into the array is formed from the PCFG bits.
* The encoding is as follows:
* 0-7: analog channel containing Vref(s)
* 8: The reference is internal (i.e. Vdd)
* 0xff: The analog inputs are configured as digital inputs
*/
unsigned int Vrefhi_position[cMaxConfigurations];
unsigned int Vreflo_position[cMaxConfigurations];
/* 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];
// used bt setControl to set pin direction as input
AD_IN_SignalControl *m_ad_in_ctl;
};
class ADCON0;
//---------------------------------------------------------
// ADCON1_16F
//
class ADCON1_16F : public ADCON1
{
public:
enum
{
ADCS0 = (1<<4),
ADCS1 = (1<<5),
ADCS2 = (1<<6)
};
ADCON1_16F(Processor *pCpu, const char *pName, const char *pDesc);
virtual void put_value(unsigned int new_value);
void setAdcon0 (ADCON0 *_adcon0) {adcon0 = _adcon0;}
private:
ADCON0 *adcon0;
unsigned int valid_bits;
};
//---------------------------------------------------------
// ADCON0
//
class ADCON0 : public sfr_register, public TriggerObject
{
public:
enum
{
ADON = 1<<0,
ADIF = 1<<1,
GO = 1<<2,
CHS0 = 1<<3,
CHS1 = 1<<4,
CHS2 = 1<<5,
ADCS0 = 1<<6,
ADCS1 = 1<<7
};
enum AD_states
{
AD_IDLE,
AD_ACQUIRING,
AD_CONVERTING
};
ADCON0(Processor *pCpu, const char *pName, const char *pDesc);
void start_conversion();
void stop_conversion();
virtual void set_interrupt();
virtual void callback();
void put(unsigned int new_value);
void put_conversion();
bool getADIF() { return (value.get() & ADIF) != 0; }
void setAdres(sfr_register *);
void setAdresLow(sfr_register *);
void setAdcon1(ADCON1 *);
void setIntcon(INTCON *);
virtual void setPir(PIR *);
void setA2DBits(unsigned int);
void setChannel_Mask(unsigned int ch_mask) { channel_mask = ch_mask; }
void setChannel_shift(unsigned int ch_shift) { channel_shift = ch_shift; }
void setGo(unsigned int go) { GO_bit = (1 << go); }
virtual bool get_ADFM() { return(adcon1->value.get() & ADCON1::ADFM); };
virtual void set_Tad(unsigned int);
virtual double getChannelVoltage(unsigned int channel) {
return( adcon1->getChannelVoltage(channel)); }
virtual double getVrefHi() {
return(m_dSampledVrefHi = adcon1->getVrefHi());}
virtual double getVrefLo() {
return (m_dSampledVrefLo = adcon1->getVrefLo());}
void setValidBits(unsigned int mask) { valid_bits = mask;}
private:
friend class ADCON0_10;
friend class ADCON0_12F;
sfr_register *adres;
sfr_register *adresl;
ADCON1 *adcon1;
INTCON *intcon;
PIR *m_pPir;
double m_dSampledVoltage;
double m_dSampledVrefHi;
double m_dSampledVrefLo;
unsigned int m_A2DScale;
unsigned int m_nBits;
guint64 future_cycle;
unsigned int ad_state;
unsigned int Tad_2;
unsigned int Tad;
unsigned int channel_mask;
unsigned int channel_shift;
unsigned int GO_bit;
unsigned int valid_bits;
};
//---------------------------------------------------------
// ADCON0_10 register for 10f22x A2D
//
class ADCON0_10 : public ADCON0
{
public:
enum
{
ADON = 1<<0,
GO = 1<<1,
CHS0 = 1<<2,
CHS1 = 1<<3,
ANS0 = 1<<6,
ANS1 = 1<<7
};
void put(unsigned int new_value);
ADCON0_10(Processor *pCpu, const char *pName, const char *pDesc);
private:
AD_IN_SignalControl ad_pin_input;
};
//---------------------------------------------------------
// ANSEL
//
class ANSEL_H;
class ANSEL : public sfr_register
{
public:
enum
{
ANS0 = 1 << 0,
ANS1 = 1 << 1,
ANS2 = 1 << 2,
ANS3 = 1 << 3,
ANS4 = 1 << 4,
ANS5 = 1 << 5,
ANS6 = 1 << 6,
ANS7 = 1 << 7
};
ANSEL(Processor *pCpu, const char *pName, const char *pDesc);
void setAdcon1(ADCON1 *new_adcon1);
void setAnselh(ANSEL_H *new_anselh) { anselh = new_anselh;}
void put(unsigned int new_val);
void setValidBits(unsigned int mask) { valid_bits = mask;}
private:
ADCON1 *adcon1;
ANSEL_H *anselh;
unsigned int valid_bits;
};
//---------------------------------------------------------
// ANSEL_H
//
class ANSEL_H : public sfr_register
{
public:
enum
{
ANS8 = 1 << 0,
ANS9 = 1 << 1,
ANS10 = 1 << 2,
ANS11 = 1 << 3,
ANS12 = 1 << 4,
ANS13 = 1 << 5,
};
ANSEL_H(Processor *pCpu, const char *pName, const char *pDesc);
void setAdcon1(ADCON1 *new_adcon1);
void setAnsel(ANSEL *new_ansel) { ansel = new_ansel;}
void put(unsigned int new_val);
void setValidBits(unsigned int mask) { valid_bits = mask;}
private:
ADCON1 *adcon1;
ANSEL *ansel;
unsigned int valid_bits;
};
//---------------------------------------------------------
// ADCON0_12F register for 12f675 A2D
//
class ADCON0_12F : public ADCON0
{
public:
enum
{
ADON = 1<<0,
GO = 1<<1,
CHS0 = 1<<2,
CHS1 = 1<<3,
CHS2 = 1<<4,
VCFG = 1<<6,
ADFM = 1<<7
};
void put(unsigned int new_value);
virtual bool get_ADFM() { return(value.get() & ADFM); }
virtual void set_Tad(unsigned int _tad) { Tad = _tad; }
ADCON0_12F(Processor *pCpu, const char *pName, const char *pDesc);
private:
AD_IN_SignalControl ad_pin_input;
};
//---------------------------------------------------------
// ANSEL_12F
//
class ANSEL_12F : public sfr_register
{
public:
enum
{
ANS0 = 1 << 0,
ANS1 = 1 << 1,
ANS2 = 1 << 2,
ANS3 = 1 << 3,
ADCS0 = 1 << 4,
ADCS1 = 1 << 5,
ADCS2 = 1 << 6
};
ANSEL_12F(Processor *pCpu, const char *pName, const char *pDesc);
void setAdcon0(ADCON0_12F *new_adcon0) { adcon0 = new_adcon0; }
void setAdcon1(ADCON1 *new_adcon1) { adcon1 = new_adcon1; }
void put(unsigned int new_val);
void set_tad(unsigned int);
private:
ADCON1 *adcon1;
ADCON0_12F *adcon0;
};
// set voltage from stimulus
class a2d_stimulus : public stimulus
{
public:
a2d_stimulus(ADCON1 *arg, int chan, const char *n=0,
double _Vth=0.0, double _Zth=1e12
);
ADCON1 *_adcon1;
int channel;
virtual void set_nodeVoltage(double v);
};
#endif // __A2DCONVERTER_H__
|