USB EPROM/Flash Programmer
Classes | Macros | Variables
devcmd.hpp File Reference

Header of the Device Commands. More...

#include <cstdint>
Include dependency graph for devcmd.hpp:

Classes

struct  TDeviceCommand
 Defines a command to send to a device. More...
 

Macros

#define ANY_ADDRESS   static_cast<uint32_t>(-1)
 Represents Any Address. More...
 
#define ANY_DATA   static_cast<uint16_t>(-1)
 Represents Any Data. More...
 

Variables

constexpr uint32_t kDeviceErasePulseDuration27E = 100
 EPROM 27E: Erase pulse duration, in milliseconds. More...
 
constexpr TDeviceCommand kDeviceCmdUnprotect28C64 []
 Command sequence to Unprotect an EEPROM 28C/X28 64 (ST/Atmel/Xicor). More...
 
constexpr TDeviceCommand kDeviceCmdProtect28C64 []
 Command sequence to Protect an EEPROM 28C/X28 64 (ST/Atmel/Xicor). More...
 
constexpr TDeviceCommand kDeviceCmdUnprotect28C256 []
 Command sequence to Unprotect an EEPROM 28C/X28 256 (ST/Atmel/Xicor). More...
 
constexpr TDeviceCommand kDeviceCmdProtect28C256 []
 Command sequence to Protect an EEPROM 28C/X28 256 (ST/Atmel/Xicor). More...
 
constexpr uint32_t kDeviceEraseDelay28F = 10
 Flash 28F: Erase delay, in milliseconds. More...
 
constexpr TDeviceCommand kDeviceCmdRead28F []
 Command sequence to Read a Flash 28F. More...
 
constexpr TDeviceCommand kDeviceCmdWrite28F []
 Command sequence to Write a Flash 28F. More...
 
constexpr TDeviceCommand kDeviceCmdVerify28F []
 Command sequence to Verify a Flash 28F. More...
 
constexpr TDeviceCommand kDeviceCmdErase28F []
 Command sequence to Erase a Flash 28F. More...
 
constexpr TDeviceCommand kDeviceCmdGetId28F []
 Command sequence to GetID a Flash 28F. More...
 
constexpr TDeviceCommand kDeviceCmdWriteSST28SF []
 Command sequence to Write a Flash SST28SF. More...
 
constexpr TDeviceCommand kDeviceCmdEraseSST28SF []
 Command sequence to Erase a Flash SST28SF. More...
 
constexpr TDeviceCommand kDeviceCmdGetIdSST28SF []
 Command sequence to GetID a Flash SST28SF. More...
 
constexpr TDeviceCommand kDeviceCmdDisableSdpSST28SF []
 Command sequence to disable SDP in a Flash SST28SF. More...
 
constexpr TDeviceCommand kDeviceCmdEnableSdpSST28SF []
 Command sequence to enable SDP in a Flash SST28SF. More...
 
constexpr TDeviceCommand kDeviceCmdReadAm28F []
 Command sequence to Read a Flash Am28F(A). More...
 
constexpr TDeviceCommand kDeviceCmdWriteAm28F []
 Command sequence to Write a Flash Am28F(A). More...
 
constexpr TDeviceCommand kDeviceCmdEraseAm28F []
 Command sequence to Erase a Flash Am28F(A). More...
 
constexpr TDeviceCommand kDeviceCmdGetIdAm28F []
 Command sequence to GetID a Flash Am28F(A). More...
 
constexpr uint8_t kDeviceStatusByteOkI28F = 0x80
 Flash i28F Status Byte OK. More...
 
constexpr TDeviceCommand kDeviceCmdReadI28F []
 Command sequence to Read a Flash i28F. More...
 
constexpr TDeviceCommand kDeviceCmdWriteI28F []
 Command sequence to Write a Flash i28F. More...
 
constexpr TDeviceCommand kDeviceCmdEraseI28F []
 Command sequence to Erase a Flash i28F. More...
 
constexpr TDeviceCommand kDeviceCmdGetIdI28F []
 Command sequence to GetID a Flash i28F. More...
 

Detailed Description

Header of the Device Commands.

Author
Robson Martins (https://www.robsonmartins.com)

Macro Definition Documentation

◆ ANY_ADDRESS

#define ANY_ADDRESS   static_cast<uint32_t>(-1)

Represents Any Address.

◆ ANY_DATA

#define ANY_DATA   static_cast<uint16_t>(-1)

Represents Any Data.

Variable Documentation

◆ kDeviceErasePulseDuration27E

constexpr uint32_t kDeviceErasePulseDuration27E = 100
constexpr

EPROM 27E: Erase pulse duration, in milliseconds.

◆ kDeviceCmdUnprotect28C64

constexpr TDeviceCommand kDeviceCmdUnprotect28C64[]
constexpr
Initial value:
= {
{0x1555, 0xAA}, {0x0AAA, 0x55}, {0x1555, 0x80},
{0x1555, 0xAA}, {0x0AAA, 0x55}, {0x1555, 0x20}
}

Command sequence to Unprotect an EEPROM 28C/X28 64 (ST/Atmel/Xicor).

◆ kDeviceCmdProtect28C64

constexpr TDeviceCommand kDeviceCmdProtect28C64[]
constexpr
Initial value:
= {
{0x1555, 0xAA}, {0x0AAA, 0x55}, {0x1555, 0xA0}
}

Command sequence to Protect an EEPROM 28C/X28 64 (ST/Atmel/Xicor).

◆ kDeviceCmdUnprotect28C256

constexpr TDeviceCommand kDeviceCmdUnprotect28C256[]
constexpr
Initial value:
= {
{0x5555, 0xAA}, {0x2AAA, 0x55}, {0x5555, 0x80},
{0x5555, 0xAA}, {0x2AAA, 0x55}, {0x5555, 0x20}
}

Command sequence to Unprotect an EEPROM 28C/X28 256 (ST/Atmel/Xicor).

◆ kDeviceCmdProtect28C256

constexpr TDeviceCommand kDeviceCmdProtect28C256[]
constexpr
Initial value:
= {
{0x5555, 0xAA}, {0x2AAA, 0x55}, {0x5555, 0xA0}
}

Command sequence to Protect an EEPROM 28C/X28 256 (ST/Atmel/Xicor).

◆ kDeviceEraseDelay28F

constexpr uint32_t kDeviceEraseDelay28F = 10
constexpr

Flash 28F: Erase delay, in milliseconds.

◆ kDeviceCmdRead28F

constexpr TDeviceCommand kDeviceCmdRead28F[]
constexpr
Initial value:
= {
{ static_cast<uint32_t>(-1) , 0x00}
}

Command sequence to Read a Flash 28F.

◆ kDeviceCmdWrite28F

constexpr TDeviceCommand kDeviceCmdWrite28F[]
constexpr
Initial value:
= {
{ static_cast<uint32_t>(-1) , 0x40}
}

Command sequence to Write a Flash 28F.

◆ kDeviceCmdVerify28F

constexpr TDeviceCommand kDeviceCmdVerify28F[]
constexpr
Initial value:
= {
{ static_cast<uint32_t>(-1) , 0xC0}
}

Command sequence to Verify a Flash 28F.

◆ kDeviceCmdErase28F

constexpr TDeviceCommand kDeviceCmdErase28F[]
constexpr
Initial value:
= {
{ static_cast<uint32_t>(-1) , 0x20}, { static_cast<uint32_t>(-1) , 0x20}
}

Command sequence to Erase a Flash 28F.

◆ kDeviceCmdGetId28F

constexpr TDeviceCommand kDeviceCmdGetId28F[]
constexpr
Initial value:
= {
{0x00, 0x90}
}

Command sequence to GetID a Flash 28F.

◆ kDeviceCmdWriteSST28SF

constexpr TDeviceCommand kDeviceCmdWriteSST28SF[]
constexpr
Initial value:
= {
{ static_cast<uint32_t>(-1) , 0x10}
}

Command sequence to Write a Flash SST28SF.

◆ kDeviceCmdEraseSST28SF

constexpr TDeviceCommand kDeviceCmdEraseSST28SF[]
constexpr
Initial value:
= {
{ static_cast<uint32_t>(-1) , 0x20}, { static_cast<uint32_t>(-1) , 0xD0}
}

Command sequence to Erase a Flash SST28SF.

This erase a sector (256), not the full device.

◆ kDeviceCmdGetIdSST28SF

constexpr TDeviceCommand kDeviceCmdGetIdSST28SF[]
constexpr
Initial value:
= {
{0x00, 0x90}
}

Command sequence to GetID a Flash SST28SF.

◆ kDeviceCmdDisableSdpSST28SF

constexpr TDeviceCommand kDeviceCmdDisableSdpSST28SF[]
constexpr
Initial value:
= {
{ 0x1823, static_cast<uint16_t>(-1) }, {0x1820, static_cast<uint16_t>(-1) }, {0x1822, static_cast<uint16_t>(-1) },
{ 0x0418, static_cast<uint16_t>(-1) }, {0x041B, static_cast<uint16_t>(-1) },
{ 0x0419, static_cast<uint16_t>(-1) }, {0x041A, static_cast<uint16_t>(-1) }
}

Command sequence to disable SDP in a Flash SST28SF.

◆ kDeviceCmdEnableSdpSST28SF

constexpr TDeviceCommand kDeviceCmdEnableSdpSST28SF[]
constexpr
Initial value:
= {
{ 0x1823, static_cast<uint16_t>(-1) }, {0x1820, static_cast<uint16_t>(-1) }, {0x1822, static_cast<uint16_t>(-1) },
{ 0x0418, static_cast<uint16_t>(-1) }, {0x041B, static_cast<uint16_t>(-1) },
{ 0x0419, static_cast<uint16_t>(-1) }, {0x040A, static_cast<uint16_t>(-1) }
}

Command sequence to enable SDP in a Flash SST28SF.

◆ kDeviceCmdReadAm28F

constexpr TDeviceCommand kDeviceCmdReadAm28F[]
constexpr
Initial value:
= {
{ static_cast<uint32_t>(-1) , 0x00}
}

Command sequence to Read a Flash Am28F(A).

◆ kDeviceCmdWriteAm28F

constexpr TDeviceCommand kDeviceCmdWriteAm28F[]
constexpr
Initial value:
= {
{ static_cast<uint32_t>(-1) , 0x10}
}

Command sequence to Write a Flash Am28F(A).

◆ kDeviceCmdEraseAm28F

constexpr TDeviceCommand kDeviceCmdEraseAm28F[]
constexpr
Initial value:
= {
{ static_cast<uint32_t>(-1) , 0x30}, { static_cast<uint32_t>(-1) , 0x30}
}

Command sequence to Erase a Flash Am28F(A).

◆ kDeviceCmdGetIdAm28F

constexpr TDeviceCommand kDeviceCmdGetIdAm28F[]
constexpr
Initial value:
= {
{0x00, 0x90}
}

Command sequence to GetID a Flash Am28F(A).

◆ kDeviceStatusByteOkI28F

constexpr uint8_t kDeviceStatusByteOkI28F = 0x80
constexpr

Flash i28F Status Byte OK.

◆ kDeviceCmdReadI28F

constexpr TDeviceCommand kDeviceCmdReadI28F[]
constexpr
Initial value:
= {
{ static_cast<uint32_t>(-1) , 0xFF}
}

Command sequence to Read a Flash i28F.

◆ kDeviceCmdWriteI28F

constexpr TDeviceCommand kDeviceCmdWriteI28F[]
constexpr
Initial value:
= {
{ static_cast<uint32_t>(-1) , 0x40}
}

Command sequence to Write a Flash i28F.

◆ kDeviceCmdEraseI28F

constexpr TDeviceCommand kDeviceCmdEraseI28F[]
constexpr
Initial value:
= {
{ static_cast<uint32_t>(-1) , 0x20}, { static_cast<uint32_t>(-1) , 0xD0}
}

Command sequence to Erase a Flash i28F.

This erase a block (n bytes), not the full device.

◆ kDeviceCmdGetIdI28F

constexpr TDeviceCommand kDeviceCmdGetIdI28F[]
constexpr
Initial value:
= {
{0x00, 0x90}
}

Command sequence to GetID a Flash i28F.