USB EPROM/Flash Programmer
Public Types | Public Member Functions | List of all members
Device Class Reference

Device Operation Class. More...

#include <device.hpp>

Public Types

typedef std::vector< uint8_t > TByteArray
 Type of byte array. More...
 

Public Member Functions

 Device ()
 Constructor. More...
 
void init ()
 Starts the device. More...
 
TDeviceSettings getSettings () const
 Get configured Device settings. More...
 
void vddCtrl (bool value=true)
 VDD Control. More...
 
void vddSetV (float value)
 VDD Set Voltage. More...
 
float vddGetV (void)
 VDD Get Voltage. More...
 
float vddGetDuty (void)
 VDD Get Duty Cycle. More...
 
float vddGetCal (void)
 VDD Get Calibration Value. More...
 
void vddInitCal (void)
 VDD Init Calibration. More...
 
void vddSaveCal (float value)
 VDD Save Calibration. More...
 
void vddOnVpp (bool value=true)
 VDD on VPP. More...
 
void vppCtrl (bool value=true)
 VPP Control. More...
 
void vppSetV (float value)
 VPP Set Voltage. More...
 
float vppGetV (void)
 VPP Get Voltage. More...
 
float vppGetDuty (void)
 VPP Get Duty Cycle. More...
 
float vppGetCal (void)
 VPP Get Calibration Value. More...
 
void vppInitCal (void)
 VPP Init Calibration. More...
 
void vppSaveCal (float value)
 VPP Save Calibration. More...
 
void vppOnA9 (bool value=true)
 VPP on A9. More...
 
void vppOnA18 (bool value=true)
 VPP on A18. More...
 
void vppOnCE (bool value=true)
 VPP on CE. More...
 
void vppOnWE (bool value=true)
 VPP on WE. More...
 
void vppOnOE (bool value=true)
 VPP on OE. More...
 
void setCE (bool value=true)
 CE Control. More...
 
void setWE (bool value=true)
 WE Control. More...
 
void setOE (bool value=true)
 OE Control. More...
 
bool addrClr ()
 Address Clear. More...
 
bool addrInc ()
 Address Increment. More...
 
bool addrSet (uint32_t value)
 Address Set DWord. More...
 
bool addrSetB (uint8_t value)
 Address Set Byte. More...
 
bool addrSetW (uint16_t value)
 Address Set Word. More...
 
uint32_t addrGet () const
 Address Get (internal value). More...
 
bool dataClr ()
 Data Clear. More...
 
bool dataSet (uint8_t value)
 Data Set Byte. More...
 
bool dataSetW (uint16_t value)
 Data Set Word. More...
 
uint8_t dataGet ()
 Data Get Byte. More...
 
uint16_t dataGetW ()
 Data Get Word. More...
 
void setTwp (uint32_t value)
 Device Set tWP. More...
 
void setTwc (uint32_t value)
 Device Set tWC. More...
 
void configure (uint16_t value)
 Device Configure. More...
 
bool setupBus (uint8_t operation)
 Device Setup Bus. More...
 
TByteArray read (size_t count=64)
 Device Read Byte/Word at current address. More...
 
bool write (const TByteArray &value, size_t count=64, bool verify=true)
 Device Write Byte/Word at current address. More...
 
bool writeSector (const TByteArray &sector, size_t count=16, bool verify=true)
 Device Write Sector Byte/Word at current address. More...
 
bool verify (const TByteArray &value, size_t count=64)
 Device Verify Byte/Word at current address. More...
 
bool blankCheck (size_t count=64)
 Device Blank Check Byte/Word at current address. More...
 
bool getId (uint32_t &id)
 Device Get ID. More...
 
bool erase ()
 Device Erase. More...
 
bool unprotect ()
 Device Unprotect. More...
 
bool protect ()
 Device Protect. More...
 

Detailed Description

Device Operation Class.

The purpose of this class is to handle the operation with device.

Member Typedef Documentation

◆ TByteArray

typedef std::vector<uint8_t> TByteArray

Type of byte array.

Constructor & Destructor Documentation

◆ Device()

Device ( )

Constructor.

Member Function Documentation

◆ init()

void init ( )

Starts the device.

◆ getSettings()

Device::TDeviceSettings getSettings ( ) const

Get configured Device settings.

Returns
Device settings.

◆ vddCtrl()

void vddCtrl ( bool  value = true)

VDD Control.

Parameters
valueIf true (default), sets the pin. Resets otherwise.

◆ vddSetV()

void vddSetV ( float  value)

VDD Set Voltage.

Parameters
valueValue to set.

◆ vddGetV()

float vddGetV ( void  )

VDD Get Voltage.

Returns
VDD Voltage (volts).

◆ vddGetDuty()

float vddGetDuty ( void  )

VDD Get Duty Cycle.

Returns
VDD Duty Cycle (percent).

◆ vddGetCal()

float vddGetCal ( void  )

VDD Get Calibration Value.

Returns
VDD Calibration Value.

◆ vddInitCal()

void vddInitCal ( void  )

VDD Init Calibration.

◆ vddSaveCal()

void vddSaveCal ( float  value)

VDD Save Calibration.

Parameters
valueValue to save.

◆ vddOnVpp()

void vddOnVpp ( bool  value = true)

VDD on VPP.

Parameters
valueIf true (default), sets the pin. Resets otherwise.

◆ vppCtrl()

void vppCtrl ( bool  value = true)

VPP Control.

Parameters
valueIf true (default), sets the pin. Resets otherwise.

◆ vppSetV()

void vppSetV ( float  value)

VPP Set Voltage.

Parameters
valueValue to set.

◆ vppGetV()

float vppGetV ( void  )

VPP Get Voltage.

Returns
VPP Voltage (volts).

◆ vppGetDuty()

float vppGetDuty ( void  )

VPP Get Duty Cycle.

Returns
VPP Duty Cycle (percent).

◆ vppGetCal()

float vppGetCal ( void  )

VPP Get Calibration Value.

Returns
VPP Calibration Value.

◆ vppInitCal()

void vppInitCal ( void  )

VPP Init Calibration.

◆ vppSaveCal()

void vppSaveCal ( float  value)

VPP Save Calibration.

Parameters
valueValue to save.

◆ vppOnA9()

void vppOnA9 ( bool  value = true)

VPP on A9.

Parameters
valueIf true (default), sets the pin. Resets otherwise.

◆ vppOnA18()

void vppOnA18 ( bool  value = true)

VPP on A18.

Parameters
valueIf true (default), sets the pin. Resets otherwise.

◆ vppOnCE()

void vppOnCE ( bool  value = true)

VPP on CE.

Parameters
valueIf true (default), sets the pin. Resets otherwise.

◆ vppOnWE()

void vppOnWE ( bool  value = true)

VPP on WE.

Parameters
valueIf true (default), sets the pin. Resets otherwise.

◆ vppOnOE()

void vppOnOE ( bool  value = true)

VPP on OE.

Parameters
valueIf true (default), sets the pin. Resets otherwise.

◆ setCE()

void setCE ( bool  value = true)

CE Control.

Parameters
valueIf true (default), sets the pin. Resets otherwise.

◆ setWE()

void setWE ( bool  value = true)

WE Control.

Parameters
valueIf true (default), sets the pin. Resets otherwise.

◆ setOE()

void setOE ( bool  value = true)

OE Control.

Parameters
valueIf true (default), sets the pin. Resets otherwise.

◆ addrClr()

bool addrClr ( )

Address Clear.

Returns
True if success, false otherwise.

◆ addrInc()

bool addrInc ( )

Address Increment.

Returns
True if success, false otherwise.

◆ addrSet()

bool addrSet ( uint32_t  value)

Address Set DWord.

Parameters
valueValue to set.
Returns
True if success, false otherwise.

◆ addrSetB()

bool addrSetB ( uint8_t  value)

Address Set Byte.

Parameters
valueValue to set.
Returns
True if success, false otherwise.

◆ addrSetW()

bool addrSetW ( uint16_t  value)

Address Set Word.

Parameters
valueValue to set.
Returns
True if success, false otherwise.

◆ addrGet()

uint32_t addrGet ( ) const

Address Get (internal value).

Returns
Address value if success, 0xFFFFFFFF otherwise.

◆ dataClr()

bool dataClr ( )

Data Clear.

Returns
True if success, false otherwise.

◆ dataSet()

bool dataSet ( uint8_t  value)

Data Set Byte.

Parameters
valueValue to set.
Returns
True if success, false otherwise.

◆ dataSetW()

bool dataSetW ( uint16_t  value)

Data Set Word.

Parameters
valueValue to set.
Returns
True if success, false otherwise.

◆ dataGet()

uint8_t dataGet ( )

Data Get Byte.

Returns
Data value if success, 0xFF otherwise.

◆ dataGetW()

uint16_t dataGetW ( )

Data Get Word.

Returns
Data value if success, 0xFFFF otherwise.

◆ setTwp()

void setTwp ( uint32_t  value)

Device Set tWP.

Parameters
valueValue to set.

◆ setTwc()

void setTwc ( uint32_t  value)

Device Set tWC.

Parameters
valueValue to set.

◆ configure()

void configure ( uint16_t  value)

Device Configure.

Parameters
valueValue to set.

◆ setupBus()

bool setupBus ( uint8_t  operation)

Device Setup Bus.

Parameters
operationOperation to realize.
Returns
True if success, false otherwise.

◆ read()

Device::TByteArray read ( size_t  count = 64)

Device Read Byte/Word at current address.

Read a buffer (count bytes/words) at current address, and increment the address.

Parameters
countNumber of bytes/words to read. Default is 64.
Returns
Buffer with read value if success (MSB first), empty otherwise.

◆ write()

bool write ( const TByteArray value,
size_t  count = 64,
bool  verify = true 
)

Device Write Byte/Word at current address.

Write a buffer (count bytes/words) at current address, and increment the address.

Parameters
valueBuffer to write (MSB first).
countNumber of bytes/words to write. Default is 64.
verifyIf true (default), verify after write.
Returns
True if success, false otherwise.

◆ writeSector()

bool writeSector ( const TByteArray sector,
size_t  count = 16,
bool  verify = true 
)

Device Write Sector Byte/Word at current address.

Write a sector (count bytes/words) at current address, and increment the address.

Parameters
sectorSector to write (MSB first).
countSector size, in bytes/words. Default is 16.
verifyIf true (default), verify after write.
Returns
True if success, false otherwise.

◆ verify()

bool verify ( const TByteArray value,
size_t  count = 64 
)

Device Verify Byte/Word at current address.

Verify a buffer (count bytes/words) at current address, and increment the address.

Parameters
valueBuffer to verify (MSB first).
countNumber of bytes/words to verify. Default is 64.
Returns
True if success, false otherwise.

◆ blankCheck()

bool blankCheck ( size_t  count = 64)

Device Blank Check Byte/Word at current address.

Blank Check a buffer (count bytes/words) at current address, and increment the address.

Parameters
countNumber of bytes/words to check. Default is 64.
Returns
True if success, false otherwise.

◆ getId()

bool getId ( uint32_t &  id)

Device Get ID.

Parameters
id[out]Manufacturer ID (MSB); Device ID (LSB).
Returns
True if success, false otherwise.

◆ erase()

bool erase ( )

Device Erase.

Returns
True if success, false otherwise.

◆ unprotect()

bool unprotect ( )

Device Unprotect.

Returns
True if success, false otherwise.

◆ protect()

bool protect ( )

Device Protect.

Returns
True if success, false otherwise.

The documentation for this class was generated from the following files: