MiniDisplay/FutabaVfd.h
author sl
Wed, 28 May 2014 18:44:15 +0200
changeset 11 b935de604982
parent 9 52372bbbc0f8
child 18 79801cc3bc94
permissions -rw-r--r--
Sorting out start-up/shutdown sequence to avoid flashing old frame upon connection.
Adding a couple of option to clear our frames upong close and/or open.
     1 //
     2 //
     3 //
     4 
     5 #ifndef FUTABA_VFD_H
     6 #define FUTABA_VFD_H
     7 
     8 #include "hidapi.h"
     9 #include "HidDevice.h"
    10 #include "BitArray.h"
    11 
    12 #ifndef MIN
    13 #define MIN(a,b) (((a)<(b))?(a):(b))
    14 #endif
    15 
    16 #ifndef MAX
    17 #define MAX(a,b) (((a)>(b))?(a):(b))
    18 #endif
    19 
    20 
    21 //This was computed from our number of pixels as follow 256x64/8/64 = 32 + 1 = 33
    22 //+1 was added for our header
    23 const int KFutabaMaxCommandOutputReport = 33;
    24 //TODO: Get ride of that constant once we figure out a way to get it from hidapi
    25 const int KFutabaMaxHidReportSize = 65;
    26 
    27 const int KHidReportIdIndex=0;
    28 const int KFutabaHidReportSizeIndex=1;
    29 //Define Futaba vendor ID to filter our list of device
    30 const unsigned short KFutabaVendorId = 0x1008;
    31 const unsigned short KFutabaProductIdGP1212A01A = 0x100C;
    32 const unsigned short KFutabaProductIdGP1212A02A = 0x1013; //Or is it 0x1015
    33 const int KGP12xWidthInPixels = 256;
    34 const int KGP12xHeightInPixels = 64;
    35 const int KGP12xPixelsPerByte = 8;
    36 const int KGP12xFrameBufferSizeInBytes = KGP12xWidthInPixels*KGP12xHeightInPixels/KGP12xPixelsPerByte; //256*64/8=2048
    37 const int KGP12xFrameBufferPixelCount = KGP12xWidthInPixels*KGP12xHeightInPixels;
    38 
    39 //typedef struct hid_device_info HidDeviceInfo;
    40 
    41 /**
    42 Define a Futaba HID report.
    43 */
    44 class FutabaVfdReport: public HidReport<KFutabaMaxHidReportSize>
    45 	{
    46 
    47 private:
    48 
    49 	};
    50 
    51 
    52 /**
    53 Define a generic Futaba VFD command.
    54 */
    55 class FutabaVfdCommand
    56     {
    57 public:
    58     FutabaVfdCommand();
    59     ~FutabaVfdCommand();
    60     //
    61     //void Create(int aMaxSize);
    62     //void Delete();
    63 
    64     //inline unsigned char& operator[](int aIndex){return iBuffer[aIndex];}
    65 
    66     void Reset();
    67 
    68 private:
    69     //unsigned char* iBuffer;
    70     FutabaVfdReport iReports[KFutabaMaxCommandOutputReport];
    71     int iSize;
    72     int iMaxSize;
    73     };
    74 
    75 /**
    76 */
    77 class FutabaVfd : public HidDevice
    78 	{
    79 public:
    80 	virtual int MinBrightness() const=0;
    81 	virtual int MaxBrightness() const=0;
    82 	virtual void SetBrightness(int aBrightness)=0;
    83 	virtual void Clear()=0;
    84 	};
    85 
    86 
    87 /**
    88 */
    89 class FutabaGraphicVfd : public FutabaVfd
    90 	{
    91 public:
    92 	virtual int WidthInPixels() const=0;
    93 	virtual int HeightInPixels() const=0;
    94 	virtual void SetPixel(unsigned char aX, unsigned char aY, bool aOn)=0;
    95 	virtual void SetAllPixels(unsigned char aOn)=0;
    96 	virtual int FrameBufferSizeInBytes() const=0;
    97 	//virtual int BitBlit(unsigned char* aSrc, unsigned char aSrcWidth, unsigned char aSrcHeight, unsigned char aTargetX, unsigned char aTargetY) const=0;
    98 
    99 	};
   100 
   101 /**
   102 Common functionality between GP1212A01A and GP1212A02A
   103 */
   104 class GP1212XXXX : public FutabaGraphicVfd
   105 	{
   106 public:
   107 	//From FutabaVfd
   108     virtual int MinBrightness() const {return 0;}
   109     virtual int MaxBrightness() const {return 5;}
   110 	};
   111 
   112 /**
   113 GP1212A01A is a graphic display module using a FUTABA 256x64dots VFD.
   114 The module do not include character ROM, the customer will compile the character
   115 by themselves (from main system).
   116 */
   117 class GP1212A01A : public GP1212XXXX
   118 	{
   119 public:
   120     enum Request
   121         {
   122         ERequestNone,
   123         ERequestDeviceId,
   124         ERequestFirmwareRevision,
   125         ERequestPowerSupplyStatus
   126         };
   127 
   128 public:
   129     GP1212A01A();
   130     ~GP1212A01A();
   131 
   132 	//
   133 	int Open();
   134 	//From FutabaGraphicVfd
   135     virtual int WidthInPixels() const {return KGP12xWidthInPixels;}
   136     virtual int HeightInPixels() const {return KGP12xHeightInPixels;}
   137 	virtual void SetPixel(unsigned char aX, unsigned char aY, bool aOn);
   138 	virtual void SetAllPixels(unsigned char aPattern);
   139     virtual int FrameBufferSizeInBytes() const {return KGP12xFrameBufferSizeInBytes;}
   140     virtual void BitBlit(const BitArray& aBitmap, int aSrcWidth, int aSrcHeight, int aTargetX, int aTargetY) const;
   141 	//From FutabaVfd
   142 	virtual void SetBrightness(int aBrightness);
   143 	virtual void Clear();
   144 
   145 	//Specific to GP1212A01A
   146 	void SetPixelBlock(unsigned char aX, unsigned char aY, int aHeight, int aSize, unsigned char aValue);
   147     void SetPixelBlock(unsigned char aX, unsigned char aY, int aHeight, int aSize, unsigned char* aPixels);
   148     //Define display position within our display RAM
   149 	void SetDisplayPosition(unsigned char aX, unsigned char aY);
   150     unsigned char DisplayPositionX() const {return iDisplayPositionX;}
   151     unsigned char DisplayPositionY() const {return iDisplayPositionY;}
   152     //
   153 	void SwapBuffers();
   154     //
   155     void RequestDeviceId();
   156     void RequestFirmwareRevision();
   157     void RequestPowerSupplyStatus();
   158 	//
   159 	void ToggleOffScreenMode();
   160     bool OffScreenMode() const {return iOffScreenMode;}
   161 	//
   162     bool RequestPending(){return iRequest!=ERequestNone;}
   163     Request CurrentRequest(){return iRequest;}
   164     void CancelRequest(){iRequest=ERequestNone;}
   165     Request AttemptRequestCompletion();
   166     FutabaVfdReport& InputReport() {return iInputReport;}
   167     bool PowerOn(){return iPowerOn;}
   168 	
   169 private:
   170 	enum DW
   171 		{
   172         DW1=0xC0,
   173         DW2=0xD0
   174 		};
   175 
   176 	void SetDisplayPosition(DW aDw,unsigned char aX, unsigned char aY);
   177 	unsigned char OffScreenY() const;
   178 	void SendClearCommand();
   179 	void OffScreenTranslation(unsigned char& aX, unsigned char& aY);
   180 	void ResetBuffers();
   181 
   182 private:
   183 	unsigned char iDisplayPositionX;
   184 	unsigned char iDisplayPositionY;
   185 	///Off screen mode is the recommended default settings to avoid tearing.
   186 	///Though turning it off can be useful for debugging
   187 	bool iOffScreenMode;
   188 	///
   189 	//FutabaVfdReport iReport;
   190 	///
   191 	//unsigned char iFrameBuffer[256*64];
   192 	BitArray* iFrameBuffer;
   193 	//unsigned char iFrameBeta[256*64];
   194 	//unsigned char *iFrontBuffer;
   195 	//unsigned char *iBackBuffer;
   196     Request iRequest;
   197     FutabaVfdReport iInputReport;
   198     bool iPowerOn;
   199 	};
   200 
   201 
   202 #endif