2
0

epd4in2.cpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580
  1. /**
  2. * @filename : epd4in2.cpp
  3. * @brief : Implements for Dual-color e-paper library
  4. * @author : Yehui from Waveshare
  5. *
  6. * Copyright (C) Waveshare August 10 2017
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documnetation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #include <stdlib.h>
  27. #include "epd4in2.h"
  28. Epd::~Epd() {
  29. };
  30. Epd::Epd() {
  31. reset_pin = RST_PIN;
  32. dc_pin = DC_PIN;
  33. cs_pin = CS_PIN;
  34. busy_pin = BUSY_PIN;
  35. width = EPD_WIDTH;
  36. height = EPD_HEIGHT;
  37. };
  38. int Epd::Init(void) {
  39. /* this calls the peripheral hardware interface, see epdif */
  40. if (IfInit() != 0) {
  41. return -1;
  42. }
  43. /* EPD hardware init start */
  44. Reset();
  45. SendCommand(0x01);
  46. SendData(0x03); // VDS_EN, VDG_EN
  47. SendData(0x00); // VCOM_HV, VGHL_LV[1], VGHL_LV[0]
  48. SendData(0x2b); // VDH
  49. SendData(0x2b); // VDL
  50. SendCommand(0x06);
  51. SendData(0x17);
  52. SendData(0x17);
  53. SendData(0x17); //07 0f 17 1f 27 2F 37 2f
  54. SendCommand(0x04);
  55. WaitUntilIdle();
  56. SendCommand(0x00);
  57. SendData(0xbf); // KW-BF KWR-AF BWROTP 0f
  58. SendCommand(0x30);
  59. SendData(0x3c); // 3A 100HZ 29 150Hz 39 200HZ 31 171HZ
  60. SendCommand(0x61); // resolution setting
  61. SendData(0x01);
  62. SendData(0x90); //128
  63. SendData(0x01); //
  64. SendData(0x2c);
  65. SendCommand(0x82); // vcom_DC setting
  66. SendData(0x12);
  67. SendCommand(0X50); // VCOM AND DATA INTERVAL SETTING
  68. SendData(0x97); // 97white border 77black border VBDF 17|D7 VBDW 97 VBDB 57 VBDF F7 VBDW 77 VBDB 37 VBDR B7
  69. SetLut();
  70. /* EPD hardware init end */
  71. return 0;
  72. }
  73. int Epd::Init_4Gray(void) {
  74. /* this calls the peripheral hardware interface, see epdif */
  75. if (IfInit() != 0) {
  76. return -1;
  77. }
  78. /* EPD hardware init start */
  79. Reset();
  80. SendCommand(0x01); //POWER SETTING
  81. SendData (0x03);
  82. SendData (0x00); //VGH=20V,VGL=-20V
  83. SendData (0x2b); //VDH=15V
  84. SendData (0x2b); //VDL=-15V
  85. SendData (0x13);
  86. SendCommand(0x06); //booster soft start
  87. SendData (0x17); //A
  88. SendData (0x17); //B
  89. SendData (0x17); //C
  90. SendCommand(0x04);
  91. WaitUntilIdle();
  92. SendCommand(0x00); //panel setting
  93. SendData(0x3f); //KW-3f KWR-2F BWROTP 0f BWOTP 1f
  94. SendCommand(0x30); //PLL setting
  95. SendData (0x3c); //100hz
  96. SendCommand(0x61); //resolution setting
  97. SendData (0x01); //400
  98. SendData (0x90);
  99. SendData (0x01); //300
  100. SendData (0x2c);
  101. SendCommand(0x82); //vcom_DC setting
  102. SendData (0x12);
  103. SendCommand(0X50); //VCOM AND DATA INTERVAL SETTING
  104. SendData(0x97);
  105. }
  106. /**
  107. * @brief: basic function for sending commands
  108. */
  109. void Epd::SendCommand(unsigned char command) {
  110. DigitalWrite(dc_pin, LOW);
  111. SpiTransfer(command);
  112. }
  113. /**
  114. * @brief: basic function for sending data
  115. */
  116. void Epd::SendData(unsigned char data) {
  117. DigitalWrite(dc_pin, HIGH);
  118. SpiTransfer(data);
  119. }
  120. /**
  121. * @brief: Wait until the busy_pin goes HIGH
  122. */
  123. void Epd::WaitUntilIdle(void) {
  124. while(DigitalRead(busy_pin) == 0) { //0: busy, 1: idle
  125. // Wait
  126. }
  127. }
  128. /**
  129. * @brief: module reset.
  130. * often used to awaken the module in deep sleep,
  131. * see Epd::Sleep();
  132. */
  133. void Epd::Reset(void) {
  134. DigitalWrite(reset_pin, LOW);
  135. DelayMs(2);
  136. DigitalWrite(reset_pin, HIGH);
  137. DelayMs(20);
  138. DigitalWrite(reset_pin, LOW);
  139. DelayMs(2);
  140. DigitalWrite(reset_pin, HIGH);
  141. DelayMs(20);
  142. DigitalWrite(reset_pin, LOW);
  143. DelayMs(2);
  144. DigitalWrite(reset_pin, HIGH);
  145. DelayMs(20);
  146. }
  147. /**
  148. * @brief: transmit partial data to the SRAM
  149. */
  150. void Epd::SetPartialWindow(const unsigned char* buffer_black, int x, int y, int w, int l) {
  151. SendCommand(PARTIAL_IN);
  152. SendCommand(PARTIAL_WINDOW);
  153. SendData(x >> 8);
  154. SendData(x & 0xf8); // x should be the multiple of 8, the last 3 bit will always be ignored
  155. SendData(((x & 0xf8) + w - 1) >> 8);
  156. SendData(((x & 0xf8) + w - 1) | 0x07);
  157. SendData(y >> 8);
  158. SendData(y & 0xff);
  159. SendData((y + l - 1) >> 8);
  160. SendData((y + l - 1) & 0xff);
  161. SendData(0x01); // Gates scan both inside and outside of the partial window. (default)
  162. DelayMs(2);
  163. SendCommand(DATA_START_TRANSMISSION_2);
  164. if (buffer_black != NULL) {
  165. for(int i = 0; i < w / 8 * l; i++) {
  166. SendData(buffer_black[i]);
  167. }
  168. } else {
  169. for(int i = 0; i < w / 8 * l; i++) {
  170. SendData(0x00);
  171. }
  172. }
  173. DelayMs(2);
  174. SendCommand(PARTIAL_OUT);
  175. }
  176. void Epd::Set_4GrayDisplay(const char *Image, int x, int y, int w, int l)
  177. {
  178. int i,j,k,m;
  179. int z=0;
  180. unsigned char temp1,temp2,temp3;
  181. /****Color display description****
  182. white gray1 gray2 black
  183. 0x10| 01 01 00 00
  184. 0x13| 01 00 01 00
  185. *********************************/
  186. SendCommand(0x10);
  187. z=0;
  188. x= x/8*8;
  189. for(m = 0; m<EPD_HEIGHT;m++)
  190. for(i=0;i<EPD_WIDTH/8;i++)
  191. {
  192. if(i >= x/8 && i <(x+w)/8 && m >= y && m < y+l){
  193. temp3=0;
  194. for(j=0;j<2;j++)
  195. {
  196. temp1 = pgm_read_byte(&Image[z*2+j]);
  197. for(k=0;k<2;k++)
  198. {
  199. temp2 = temp1&0xC0 ;
  200. if(temp2 == 0xC0)
  201. temp3 |= 0x01;//white
  202. else if(temp2 == 0x00)
  203. temp3 |= 0x00; //black
  204. else if(temp2 == 0x80)
  205. temp3 |= 0x01; //gray1
  206. else //0x40
  207. temp3 |= 0x00; //gray2
  208. temp3 <<= 1;
  209. temp1 <<= 2;
  210. temp2 = temp1&0xC0 ;
  211. if(temp2 == 0xC0) //white
  212. temp3 |= 0x01;
  213. else if(temp2 == 0x00) //black
  214. temp3 |= 0x00;
  215. else if(temp2 == 0x80)
  216. temp3 |= 0x01; //gray1
  217. else //0x40
  218. temp3 |= 0x00; //gray2
  219. if(j!=1 || k!=1)
  220. temp3 <<= 1;
  221. temp1 <<= 2;
  222. }
  223. }
  224. z++;
  225. SendData(temp3);
  226. }else{
  227. SendData(0xff);
  228. }
  229. }
  230. // new data
  231. SendCommand(0x13);
  232. z=0;
  233. for(m = 0; m<EPD_HEIGHT;m++)
  234. for(i=0;i<EPD_WIDTH/8;i++)
  235. {
  236. if(i >= x/8 && i <(x+w)/8 && m >= y && m < y+l){
  237. temp3=0;
  238. for(j=0;j<2;j++)
  239. {
  240. temp1 = pgm_read_byte(&Image[z*2+j]);
  241. for(k=0;k<2;k++)
  242. {
  243. temp2 = temp1&0xC0 ;
  244. if(temp2 == 0xC0)
  245. temp3 |= 0x01;//white
  246. else if(temp2 == 0x00)
  247. temp3 |= 0x00; //black
  248. else if(temp2 == 0x80)
  249. temp3 |= 0x00; //gray1
  250. else //0x40
  251. temp3 |= 0x01; //gray2
  252. temp3 <<= 1;
  253. temp1 <<= 2;
  254. temp2 = temp1&0xC0 ;
  255. if(temp2 == 0xC0) //white
  256. temp3 |= 0x01;
  257. else if(temp2 == 0x00) //black
  258. temp3 |= 0x00;
  259. else if(temp2 == 0x80)
  260. temp3 |= 0x00; //gray1
  261. else //0x40
  262. temp3 |= 0x01; //gray2
  263. if(j!=1 || k!=1)
  264. temp3 <<= 1;
  265. temp1 <<= 2;
  266. }
  267. }
  268. z++;
  269. SendData(temp3);
  270. }else {
  271. SendData(0xff);
  272. }
  273. }
  274. set4Gray_lut();
  275. SendCommand(DISPLAY_REFRESH);
  276. DelayMs(100);
  277. WaitUntilIdle();
  278. }
  279. /**
  280. * @brief: set the look-up table
  281. */
  282. void Epd::SetLut(void) {
  283. unsigned int count;
  284. SendCommand(LUT_FOR_VCOM); //vcom
  285. for(count = 0; count < 36; count++) {
  286. SendData(lut_vcom0[count]);
  287. }
  288. SendCommand(LUT_WHITE_TO_WHITE); //ww --
  289. for(count = 0; count < 36; count++) {
  290. SendData(lut_ww[count]);
  291. }
  292. SendCommand(LUT_BLACK_TO_WHITE); //bw r
  293. for(count = 0; count < 36; count++) {
  294. SendData(lut_bw[count]);
  295. }
  296. SendCommand(LUT_WHITE_TO_BLACK); //wb w
  297. for(count = 0; count < 36; count++) {
  298. SendData(lut_bb[count]);
  299. }
  300. SendCommand(LUT_BLACK_TO_BLACK); //bb b
  301. for(count = 0; count < 36; count++) {
  302. SendData(lut_wb[count]);
  303. }
  304. }
  305. void Epd::set4Gray_lut(void)
  306. {
  307. unsigned int count;
  308. {
  309. SendCommand(0x20); //vcom
  310. for(count=0;count<42;count++)
  311. {SendData(EPD_4IN2_4Gray_lut_vcom[count]);}
  312. SendCommand(0x21); //red not use
  313. for(count=0;count<42;count++)
  314. {SendData(EPD_4IN2_4Gray_lut_ww[count]);}
  315. SendCommand(0x22); //bw r
  316. for(count=0;count<42;count++)
  317. {SendData(EPD_4IN2_4Gray_lut_bw[count]);}
  318. SendCommand(0x23); //wb w
  319. for(count=0;count<42;count++)
  320. {SendData(EPD_4IN2_4Gray_lut_wb[count]);}
  321. SendCommand(0x24); //bb b
  322. for(count=0;count<42;count++)
  323. {SendData(EPD_4IN2_4Gray_lut_bb[count]);}
  324. SendCommand(0x25); //vcom
  325. for(count=0;count<42;count++)
  326. {SendData(EPD_4IN2_4Gray_lut_ww[count]);}
  327. }
  328. }
  329. /**
  330. * @brief: refresh and displays the frame
  331. */
  332. void Epd::DisplayFrame(const unsigned char* frame_buffer) {
  333. SendCommand(RESOLUTION_SETTING);
  334. SendData(width >> 8);
  335. SendData(width & 0xff);
  336. SendData(height >> 8);
  337. SendData(height & 0xff);
  338. SendCommand(VCM_DC_SETTING);
  339. SendData(0x12);
  340. SendCommand(VCOM_AND_DATA_INTERVAL_SETTING);
  341. SendCommand(0x97); //VBDF 17|D7 VBDW 97 VBDB 57 VBDF F7 VBDW 77 VBDB 37 VBDR B7
  342. if (frame_buffer != NULL) {
  343. SendCommand(DATA_START_TRANSMISSION_1);
  344. for(int i = 0; i < width / 8 * height; i++) {
  345. SendData(0xFF); // bit set: white, bit reset: black
  346. }
  347. DelayMs(2);
  348. SendCommand(DATA_START_TRANSMISSION_2);
  349. for(int i = 0; i < width / 8 * height; i++) {
  350. SendData(pgm_read_byte(&frame_buffer[i]));
  351. }
  352. DelayMs(2);
  353. }
  354. SendCommand(0x12);
  355. DelayMs(100);
  356. WaitUntilIdle();
  357. }
  358. /**
  359. * @brief: clear the frame data from the SRAM, this won't refresh the display
  360. */
  361. void Epd::ClearFrame(void) {
  362. SendCommand(RESOLUTION_SETTING);
  363. SendData(width >> 8);
  364. SendData(width & 0xff);
  365. SendData(height >> 8);
  366. SendData(height & 0xff);
  367. SendCommand(DATA_START_TRANSMISSION_1);
  368. DelayMs(2);
  369. for(int i = 0; i < width / 8 * height; i++) {
  370. SendData(0xFF);
  371. }
  372. DelayMs(2);
  373. SendCommand(DATA_START_TRANSMISSION_2);
  374. DelayMs(2);
  375. for(int i = 0; i < width / 8 * height; i++) {
  376. SendData(0xFF);
  377. }
  378. DelayMs(2);
  379. }
  380. /**
  381. * @brief: This displays the frame data from SRAM
  382. */
  383. void Epd::DisplayFrame(void) {
  384. SetLut();
  385. SendCommand(DISPLAY_REFRESH);
  386. DelayMs(100);
  387. WaitUntilIdle();
  388. }
  389. /**
  390. * @brief: After this command is transmitted, the chip would enter the deep-sleep mode to save power.
  391. * The deep sleep mode would return to standby by hardware reset. The only one parameter is a
  392. * check code, the command would be executed if check code = 0xA5.
  393. * You can use Epd::Reset() to awaken and use Epd::Init() to initialize.
  394. */
  395. void Epd::Sleep() {
  396. SendCommand(VCOM_AND_DATA_INTERVAL_SETTING);
  397. SendData(0x17); //border floating
  398. SendCommand(VCM_DC_SETTING); //VCOM to 0V
  399. SendCommand(PANEL_SETTING);
  400. DelayMs(100);
  401. SendCommand(POWER_SETTING); //VG&VS to 0V fast
  402. SendData(0x00);
  403. SendData(0x00);
  404. SendData(0x00);
  405. SendData(0x00);
  406. SendData(0x00);
  407. DelayMs(100);
  408. SendCommand(POWER_OFF); //power off
  409. WaitUntilIdle();
  410. SendCommand(DEEP_SLEEP); //deep sleep
  411. SendData(0xA5);
  412. }
  413. const unsigned char lut_vcom0[] =
  414. {
  415. 0x00, 0x08, 0x08, 0x00, 0x00, 0x02,
  416. 0x00, 0x0F, 0x0F, 0x00, 0x00, 0x01,
  417. 0x00, 0x08, 0x08, 0x00, 0x00, 0x02,
  418. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  419. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  420. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  421. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  422. 0x00, 0x00,
  423. };
  424. const unsigned char lut_ww[] ={
  425. 0x50, 0x08, 0x08, 0x00, 0x00, 0x02,
  426. 0x90, 0x0F, 0x0F, 0x00, 0x00, 0x01,
  427. 0xA0, 0x08, 0x08, 0x00, 0x00, 0x02,
  428. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  429. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  430. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  431. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  432. };
  433. const unsigned char lut_bw[] ={
  434. 0x50, 0x08, 0x08, 0x00, 0x00, 0x02,
  435. 0x90, 0x0F, 0x0F, 0x00, 0x00, 0x01,
  436. 0xA0, 0x08, 0x08, 0x00, 0x00, 0x02,
  437. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  438. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  439. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  440. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  441. };
  442. const unsigned char lut_bb[] ={
  443. 0xA0, 0x08, 0x08, 0x00, 0x00, 0x02,
  444. 0x90, 0x0F, 0x0F, 0x00, 0x00, 0x01,
  445. 0x50, 0x08, 0x08, 0x00, 0x00, 0x02,
  446. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  447. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  448. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  449. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  450. };
  451. const unsigned char lut_wb[] ={
  452. 0x20, 0x08, 0x08, 0x00, 0x00, 0x02,
  453. 0x90, 0x0F, 0x0F, 0x00, 0x00, 0x01,
  454. 0x10, 0x08, 0x08, 0x00, 0x00, 0x02,
  455. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  456. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  457. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  458. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  459. };
  460. /******************************gray*********************************/
  461. //0~3 gray
  462. const unsigned char EPD_4IN2_4Gray_lut_vcom[] =
  463. {
  464. 0x00 ,0x0A ,0x00 ,0x00 ,0x00 ,0x01,
  465. 0x60 ,0x14 ,0x14 ,0x00 ,0x00 ,0x01,
  466. 0x00 ,0x14 ,0x00 ,0x00 ,0x00 ,0x01,
  467. 0x00 ,0x13 ,0x0A ,0x01 ,0x00 ,0x01,
  468. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00,
  469. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00,
  470. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00
  471. };
  472. //R21
  473. const unsigned char EPD_4IN2_4Gray_lut_ww[] ={
  474. 0x40 ,0x0A ,0x00 ,0x00 ,0x00 ,0x01,
  475. 0x90 ,0x14 ,0x14 ,0x00 ,0x00 ,0x01,
  476. 0x10 ,0x14 ,0x0A ,0x00 ,0x00 ,0x01,
  477. 0xA0 ,0x13 ,0x01 ,0x00 ,0x00 ,0x01,
  478. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00,
  479. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00,
  480. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00,
  481. };
  482. //R22H r
  483. const unsigned char EPD_4IN2_4Gray_lut_bw[] ={
  484. 0x40 ,0x0A ,0x00 ,0x00 ,0x00 ,0x01,
  485. 0x90 ,0x14 ,0x14 ,0x00 ,0x00 ,0x01,
  486. 0x00 ,0x14 ,0x0A ,0x00 ,0x00 ,0x01,
  487. 0x99 ,0x0C ,0x01 ,0x03 ,0x04 ,0x01,
  488. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00,
  489. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00,
  490. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00,
  491. };
  492. //R23H w
  493. const unsigned char EPD_4IN2_4Gray_lut_wb[] ={
  494. 0x40 ,0x0A ,0x00 ,0x00 ,0x00 ,0x01,
  495. 0x90 ,0x14 ,0x14 ,0x00 ,0x00 ,0x01,
  496. 0x00 ,0x14 ,0x0A ,0x00 ,0x00 ,0x01,
  497. 0x99 ,0x0B ,0x04 ,0x04 ,0x01 ,0x01,
  498. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00,
  499. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00,
  500. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00,
  501. };
  502. //R24H b
  503. const unsigned char EPD_4IN2_4Gray_lut_bb[] ={
  504. 0x80 ,0x0A ,0x00 ,0x00 ,0x00 ,0x01,
  505. 0x90 ,0x14 ,0x14 ,0x00 ,0x00 ,0x01,
  506. 0x20 ,0x14 ,0x0A ,0x00 ,0x00 ,0x01,
  507. 0x50 ,0x13 ,0x01 ,0x00 ,0x00 ,0x01,
  508. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00,
  509. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00,
  510. 0x00 ,0x00 ,0x00 ,0x00 ,0x00 ,0x00,
  511. };
  512. /* END OF FILE */