<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic max10 on chip flash write issue (without nios) in Embedded Intel® Core™ Processors</title>
    <link>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250194#M2376</link>
    <description>&lt;P&gt;max10 on chip flash write issue (without nios)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hi, can anyone help to answer this question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to write data to max10 on chip flash(UFM) without using NIOS.&lt;/P&gt;&lt;P&gt;what i am doing is to write a simple controller module and send the control signal required by on_chip_flash ip.&lt;/P&gt;&lt;P&gt;The steps can be described as follows:&lt;/P&gt;&lt;P&gt;1, disable write protection &lt;/P&gt;&lt;P&gt;2, do sector erase&lt;/P&gt;&lt;P&gt;3, write data to UFM&lt;/P&gt;&lt;P&gt;4, read back the data and verify the writing is successful or not.&lt;/P&gt;&lt;P&gt;5, enable write protection bit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my question is if i read back signal after write, data is correct. However, if i disable the write process, and read the address&lt;/P&gt;&lt;P&gt;directly (same address as i write before), the data is always FFFF. It seems that the data is not write into flash successfully.&lt;/P&gt;&lt;P&gt;However, during the wite process, the statue signal from avmm_csr_readdata shows that the erase/write operation is successful. &lt;/P&gt;&lt;P&gt;And the data can be read back correctly after the write process. Please help to solve this problem. Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached please find the cource code of the controller.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module main_controller &lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;clock, &lt;/P&gt;&lt;P&gt;reset_n, &lt;/P&gt;&lt;P&gt;UFM_ADDRESS1,&lt;/P&gt;&lt;P&gt;UFM_ADDRESS2,&lt;/P&gt;&lt;P&gt;display_count1, &lt;/P&gt;&lt;P&gt;display_count2,&lt;/P&gt;&lt;P&gt;data_valid, &lt;/P&gt;&lt;P&gt;csr_status,&lt;/P&gt;&lt;P&gt;CSR_IDLE, &lt;/P&gt;&lt;P&gt;CSR_OP_WRITE_PASS,&lt;/P&gt;&lt;P&gt;CSR_OP_READ_PASS,&lt;/P&gt;&lt;P&gt;CSR_OP_ERASE_PASS,&lt;/P&gt;&lt;P&gt;CSR_BUSY_ERASE,&lt;/P&gt;&lt;P&gt;CSR_BUSY_WRITE,&lt;/P&gt;&lt;P&gt;CSR_BUSY_READ,&lt;/P&gt;&lt;P&gt;write_protect,&lt;/P&gt;&lt;P&gt;mc_state_machine&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter COUNTER_BITS = 32;&lt;/P&gt;&lt;P&gt;parameter read_only = 1;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;input    clock;&lt;/P&gt;&lt;P&gt;input    reset_n;&lt;/P&gt;&lt;P&gt;input    [19:0] UFM_ADDRESS1;&lt;/P&gt;&lt;P&gt;input    [19:0] UFM_ADDRESS2;&lt;/P&gt;&lt;P&gt;input    [COUNTER_BITS-1:0] display_count1; // &lt;/P&gt;&lt;P&gt;input    [COUNTER_BITS-1:0] display_count2;&lt;/P&gt;&lt;P&gt;output    reg data_valid;  // &lt;/P&gt;&lt;P&gt;output   [9:0] csr_status;&lt;/P&gt;&lt;P&gt;output         CSR_IDLE; &lt;/P&gt;&lt;P&gt;output         CSR_OP_WRITE_PASS;&lt;/P&gt;&lt;P&gt;output         CSR_OP_READ_PASS;&lt;/P&gt;&lt;P&gt;output         CSR_OP_ERASE_PASS;&lt;/P&gt;&lt;P&gt;output         CSR_BUSY_ERASE;&lt;/P&gt;&lt;P&gt;output         CSR_BUSY_WRITE;&lt;/P&gt;&lt;P&gt;output         CSR_BUSY_READ;&lt;/P&gt;&lt;P&gt;output   [4:0] write_protect;&lt;/P&gt;&lt;P&gt;output   [5:0] mc_state_machine; // &lt;/P&gt;&lt;P&gt;///////////////////////////////////////////////&lt;/P&gt;&lt;P&gt;// mc_state_machine states&lt;/P&gt;&lt;P&gt;`define            IDLE                                                          6'b000000&lt;/P&gt;&lt;P&gt;`define            FETCH_FLASH                                                   6'b000001&lt;/P&gt;&lt;P&gt;`define            FLASH_READ1                                                   6'b000010&lt;/P&gt;&lt;P&gt;`define            FLASH_READ2                                                   6'b000011&lt;/P&gt;&lt;P&gt;`define            FLASH_READ3                                                   6'b000100&lt;/P&gt;&lt;P&gt;`define            FLASH_READ4                                                   6'b000101&lt;/P&gt;&lt;P&gt;`define            READ_FLASH_DONE                                               6'b000110&lt;/P&gt;&lt;P&gt;`define            WAIT_FOR_INIT_SHUTDOWN                                        6'b000111&lt;/P&gt;&lt;P&gt;`define            START_SHUTDOWN                                                6'b001000&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_OFF1                                                 6'b001001&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_OFF2                                                 6'b001010&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_OFF3                                                 6'b001011&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_OFF4                                                 6'b001100&lt;/P&gt;&lt;P&gt;`define            CSR_READ1                                                     6'b001101&lt;/P&gt;&lt;P&gt;`define            CSR_READ2                                                     6'b001110&lt;/P&gt;&lt;P&gt;`define            CSR_READ3                                                     6'b001111&lt;/P&gt;&lt;P&gt;`define            CSR_READ4                                                     6'b010000&lt;/P&gt;&lt;P&gt;`define            CSR_READ5                                                     6'b010001&lt;/P&gt;&lt;P&gt;`define            CSR_READ6                                                     6'b010010&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE0                                                  6'b010011&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE1                                                  6'b010100&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE2                                                  6'b010101&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE3                                                  6'b010110&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE4                                                  6'b010111&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE5                                                  6'b011000&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE6                                                  6'b011001&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE7                                                  6'b011010&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE_DONE                                              6'b011011&lt;/P&gt;&lt;P&gt;`define            FLASH_VERIFY1                                                 6'b011100&lt;/P&gt;&lt;P&gt;`define            FLASH_VERIFY2                                                 6'b011101&lt;/P&gt;&lt;P&gt;`define            FLASH_VERIFY3                                                 6'b011110&lt;/P&gt;&lt;P&gt;`define            FLASH_VERIFY4                                                 6'b011111&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_ON1                                                  6'b100000&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_ON2                                                  6'b100001&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_ON3                                                  6'b100010&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_VERIFY1                                              6'b100011&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_VERIFY2                                              6'b100100&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_VERIFY3                                              6'b100101&lt;/P&gt;&lt;P&gt;`define            POWER_DOWN_READY                                              6'b100110&lt;/P&gt;&lt;P&gt;////////////////////////////////////////////////&lt;/P&gt;&lt;P&gt;   reg      [19:0]   avmm_data_addr;&lt;/P&gt;&lt;P&gt;   reg               avmm_data_read;&lt;/P&gt;&lt;P&gt;   reg      [31:0]   avmm_data_writedata;&lt;/P&gt;&lt;P&gt;   reg               avmm_data_write;&lt;/P&gt;&lt;P&gt;   reg      [3:0]    avmm_data_burstcount;&lt;/P&gt;&lt;P&gt;   wire     [31:0]   avmm_data_readdata;&lt;/P&gt;&lt;P&gt;   reg               avmm_csr_addr;&lt;/P&gt;&lt;P&gt;   reg               avmm_csr_read;&lt;/P&gt;&lt;P&gt;   reg      [31:0]   avmm_csr_writedata;&lt;/P&gt;&lt;P&gt;   reg               avmm_csr_write;&lt;/P&gt;&lt;P&gt;   reg    [31:0]     flash_dataout1, flash_dataout2;&lt;/P&gt;&lt;P&gt;   reg    [5:0]      mc_state_machine;&lt;/P&gt;&lt;P&gt;   wire     [31:0]   avmm_csr_readdata;&lt;/P&gt;&lt;P&gt;   wire              avmm_data_waitrequest;&lt;/P&gt;&lt;P&gt;   wire              avmm_data_readdatavalid;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign csr_status = avmm_csr_readdata[9:0];&lt;/P&gt;&lt;P&gt;assign write_protect= avmm_csr_readdata[9:5];&lt;/P&gt;&lt;P&gt;////////////////////////&lt;/P&gt;&lt;P&gt;//wire CSR_IDLE, CSR_OP_WRITE_PASS,CSR_OP_READ_PASS,CSR_OP_ERASE_PASS;&lt;/P&gt;&lt;P&gt;assign CSR_IDLE=(csr_status[1:0]==2'b00)?1'b1:1'b0;&lt;/P&gt;&lt;P&gt;assign CSR_BUSY_ERASE=(csr_status[1:0]==2'b01)?1'b1:1'b0;///5'bxxx01&lt;/P&gt;&lt;P&gt;assign CSR_BUSY_WRITE=(csr_status[1:0]==2'b10)?1'b1:1'b0;///5'bxxx10&lt;/P&gt;&lt;P&gt;assign CSR_BUSY_READ=(csr_status[1:0]==2'b11)?1'b1:1'b0;///5'bxxx11&lt;/P&gt;&lt;P&gt;assign CSR_OP_WRITE_PASS=(csr_status[3]);&amp;lt;...&lt;/P&gt;</description>
    <pubDate>Thu, 09 Aug 2018 13:37:05 GMT</pubDate>
    <dc:creator>akong</dc:creator>
    <dc:date>2018-08-09T13:37:05Z</dc:date>
    <item>
      <title>max10 on chip flash write issue (without nios)</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250194#M2376</link>
      <description>&lt;P&gt;max10 on chip flash write issue (without nios)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hi, can anyone help to answer this question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to write data to max10 on chip flash(UFM) without using NIOS.&lt;/P&gt;&lt;P&gt;what i am doing is to write a simple controller module and send the control signal required by on_chip_flash ip.&lt;/P&gt;&lt;P&gt;The steps can be described as follows:&lt;/P&gt;&lt;P&gt;1, disable write protection &lt;/P&gt;&lt;P&gt;2, do sector erase&lt;/P&gt;&lt;P&gt;3, write data to UFM&lt;/P&gt;&lt;P&gt;4, read back the data and verify the writing is successful or not.&lt;/P&gt;&lt;P&gt;5, enable write protection bit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my question is if i read back signal after write, data is correct. However, if i disable the write process, and read the address&lt;/P&gt;&lt;P&gt;directly (same address as i write before), the data is always FFFF. It seems that the data is not write into flash successfully.&lt;/P&gt;&lt;P&gt;However, during the wite process, the statue signal from avmm_csr_readdata shows that the erase/write operation is successful. &lt;/P&gt;&lt;P&gt;And the data can be read back correctly after the write process. Please help to solve this problem. Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached please find the cource code of the controller.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module main_controller &lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;clock, &lt;/P&gt;&lt;P&gt;reset_n, &lt;/P&gt;&lt;P&gt;UFM_ADDRESS1,&lt;/P&gt;&lt;P&gt;UFM_ADDRESS2,&lt;/P&gt;&lt;P&gt;display_count1, &lt;/P&gt;&lt;P&gt;display_count2,&lt;/P&gt;&lt;P&gt;data_valid, &lt;/P&gt;&lt;P&gt;csr_status,&lt;/P&gt;&lt;P&gt;CSR_IDLE, &lt;/P&gt;&lt;P&gt;CSR_OP_WRITE_PASS,&lt;/P&gt;&lt;P&gt;CSR_OP_READ_PASS,&lt;/P&gt;&lt;P&gt;CSR_OP_ERASE_PASS,&lt;/P&gt;&lt;P&gt;CSR_BUSY_ERASE,&lt;/P&gt;&lt;P&gt;CSR_BUSY_WRITE,&lt;/P&gt;&lt;P&gt;CSR_BUSY_READ,&lt;/P&gt;&lt;P&gt;write_protect,&lt;/P&gt;&lt;P&gt;mc_state_machine&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter COUNTER_BITS = 32;&lt;/P&gt;&lt;P&gt;parameter read_only = 1;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;input    clock;&lt;/P&gt;&lt;P&gt;input    reset_n;&lt;/P&gt;&lt;P&gt;input    [19:0] UFM_ADDRESS1;&lt;/P&gt;&lt;P&gt;input    [19:0] UFM_ADDRESS2;&lt;/P&gt;&lt;P&gt;input    [COUNTER_BITS-1:0] display_count1; // &lt;/P&gt;&lt;P&gt;input    [COUNTER_BITS-1:0] display_count2;&lt;/P&gt;&lt;P&gt;output    reg data_valid;  // &lt;/P&gt;&lt;P&gt;output   [9:0] csr_status;&lt;/P&gt;&lt;P&gt;output         CSR_IDLE; &lt;/P&gt;&lt;P&gt;output         CSR_OP_WRITE_PASS;&lt;/P&gt;&lt;P&gt;output         CSR_OP_READ_PASS;&lt;/P&gt;&lt;P&gt;output         CSR_OP_ERASE_PASS;&lt;/P&gt;&lt;P&gt;output         CSR_BUSY_ERASE;&lt;/P&gt;&lt;P&gt;output         CSR_BUSY_WRITE;&lt;/P&gt;&lt;P&gt;output         CSR_BUSY_READ;&lt;/P&gt;&lt;P&gt;output   [4:0] write_protect;&lt;/P&gt;&lt;P&gt;output   [5:0] mc_state_machine; // &lt;/P&gt;&lt;P&gt;///////////////////////////////////////////////&lt;/P&gt;&lt;P&gt;// mc_state_machine states&lt;/P&gt;&lt;P&gt;`define            IDLE                                                          6'b000000&lt;/P&gt;&lt;P&gt;`define            FETCH_FLASH                                                   6'b000001&lt;/P&gt;&lt;P&gt;`define            FLASH_READ1                                                   6'b000010&lt;/P&gt;&lt;P&gt;`define            FLASH_READ2                                                   6'b000011&lt;/P&gt;&lt;P&gt;`define            FLASH_READ3                                                   6'b000100&lt;/P&gt;&lt;P&gt;`define            FLASH_READ4                                                   6'b000101&lt;/P&gt;&lt;P&gt;`define            READ_FLASH_DONE                                               6'b000110&lt;/P&gt;&lt;P&gt;`define            WAIT_FOR_INIT_SHUTDOWN                                        6'b000111&lt;/P&gt;&lt;P&gt;`define            START_SHUTDOWN                                                6'b001000&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_OFF1                                                 6'b001001&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_OFF2                                                 6'b001010&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_OFF3                                                 6'b001011&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_OFF4                                                 6'b001100&lt;/P&gt;&lt;P&gt;`define            CSR_READ1                                                     6'b001101&lt;/P&gt;&lt;P&gt;`define            CSR_READ2                                                     6'b001110&lt;/P&gt;&lt;P&gt;`define            CSR_READ3                                                     6'b001111&lt;/P&gt;&lt;P&gt;`define            CSR_READ4                                                     6'b010000&lt;/P&gt;&lt;P&gt;`define            CSR_READ5                                                     6'b010001&lt;/P&gt;&lt;P&gt;`define            CSR_READ6                                                     6'b010010&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE0                                                  6'b010011&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE1                                                  6'b010100&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE2                                                  6'b010101&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE3                                                  6'b010110&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE4                                                  6'b010111&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE5                                                  6'b011000&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE6                                                  6'b011001&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE7                                                  6'b011010&lt;/P&gt;&lt;P&gt;`define            FLASH_WRITE_DONE                                              6'b011011&lt;/P&gt;&lt;P&gt;`define            FLASH_VERIFY1                                                 6'b011100&lt;/P&gt;&lt;P&gt;`define            FLASH_VERIFY2                                                 6'b011101&lt;/P&gt;&lt;P&gt;`define            FLASH_VERIFY3                                                 6'b011110&lt;/P&gt;&lt;P&gt;`define            FLASH_VERIFY4                                                 6'b011111&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_ON1                                                  6'b100000&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_ON2                                                  6'b100001&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_ON3                                                  6'b100010&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_VERIFY1                                              6'b100011&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_VERIFY2                                              6'b100100&lt;/P&gt;&lt;P&gt;`define            CSR_MASK_VERIFY3                                              6'b100101&lt;/P&gt;&lt;P&gt;`define            POWER_DOWN_READY                                              6'b100110&lt;/P&gt;&lt;P&gt;////////////////////////////////////////////////&lt;/P&gt;&lt;P&gt;   reg      [19:0]   avmm_data_addr;&lt;/P&gt;&lt;P&gt;   reg               avmm_data_read;&lt;/P&gt;&lt;P&gt;   reg      [31:0]   avmm_data_writedata;&lt;/P&gt;&lt;P&gt;   reg               avmm_data_write;&lt;/P&gt;&lt;P&gt;   reg      [3:0]    avmm_data_burstcount;&lt;/P&gt;&lt;P&gt;   wire     [31:0]   avmm_data_readdata;&lt;/P&gt;&lt;P&gt;   reg               avmm_csr_addr;&lt;/P&gt;&lt;P&gt;   reg               avmm_csr_read;&lt;/P&gt;&lt;P&gt;   reg      [31:0]   avmm_csr_writedata;&lt;/P&gt;&lt;P&gt;   reg               avmm_csr_write;&lt;/P&gt;&lt;P&gt;   reg    [31:0]     flash_dataout1, flash_dataout2;&lt;/P&gt;&lt;P&gt;   reg    [5:0]      mc_state_machine;&lt;/P&gt;&lt;P&gt;   wire     [31:0]   avmm_csr_readdata;&lt;/P&gt;&lt;P&gt;   wire              avmm_data_waitrequest;&lt;/P&gt;&lt;P&gt;   wire              avmm_data_readdatavalid;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign csr_status = avmm_csr_readdata[9:0];&lt;/P&gt;&lt;P&gt;assign write_protect= avmm_csr_readdata[9:5];&lt;/P&gt;&lt;P&gt;////////////////////////&lt;/P&gt;&lt;P&gt;//wire CSR_IDLE, CSR_OP_WRITE_PASS,CSR_OP_READ_PASS,CSR_OP_ERASE_PASS;&lt;/P&gt;&lt;P&gt;assign CSR_IDLE=(csr_status[1:0]==2'b00)?1'b1:1'b0;&lt;/P&gt;&lt;P&gt;assign CSR_BUSY_ERASE=(csr_status[1:0]==2'b01)?1'b1:1'b0;///5'bxxx01&lt;/P&gt;&lt;P&gt;assign CSR_BUSY_WRITE=(csr_status[1:0]==2'b10)?1'b1:1'b0;///5'bxxx10&lt;/P&gt;&lt;P&gt;assign CSR_BUSY_READ=(csr_status[1:0]==2'b11)?1'b1:1'b0;///5'bxxx11&lt;/P&gt;&lt;P&gt;assign CSR_OP_WRITE_PASS=(csr_status[3]);&amp;lt;...&lt;/P&gt;</description>
      <pubDate>Thu, 09 Aug 2018 13:37:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250194#M2376</guid>
      <dc:creator>akong</dc:creator>
      <dc:date>2018-08-09T13:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: max10 on chip flash write issue (without nios)</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250195#M2377</link>
      <description>&lt;P&gt;Hello, spacetimerake:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank for contacting Intel Embedded Community.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to be on the same page, could you please tell us the part number and SKU of the device related to this thread? Please give us all the information related to them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wating for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Carlos_A.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Aug 2018 16:50:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250195#M2377</guid>
      <dc:creator>CarlosAM_INTEL</dc:creator>
      <dc:date>2018-08-09T16:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: max10 on chip flash write issue (without nios)</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250196#M2378</link>
      <description>&lt;P&gt;Hi Carlos A,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your prompt reply. my controller code is test using MAX10 FPGA Evaluation Kit  &lt;A href="https://www.intel.com/content/www/us/en/programmable/products/boards_and_kits/dev-kits/altera/kit-max-10-evaluation.html"&gt;https://www.intel.com/content/www/us/en/programmable/products/boards_and_kits/dev-kits/altera/kit-max-10-evaluation.html&lt;/A&gt; MAX 10 FPGA Evaluation Kit &lt;/P&gt;&lt;P&gt;P/N=EK-10M08E144ES/P&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Fri, 10 Aug 2018 12:57:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250196#M2378</guid>
      <dc:creator>akong</dc:creator>
      <dc:date>2018-08-10T12:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: max10 on chip flash write issue (without nios)</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250197#M2379</link>
      <description>&lt;P&gt;Hello, spacetimerake:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your clarification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The hardware consultations related to this device or any FPGA product family device should be addressed to the following website:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.intel.com/s/topic/0TO0P000000MWKDWA4/fpga-soc-and-cpld-boards-and-kits?language=en_US"&gt;https://forums.intel.com/s/topic/0TO0P000000MWKDWA4/fpga-soc-and-cpld-boards-and-kits?language=en_US&lt;/A&gt; &lt;A href="https://forums.intel.com/s/topic/0TO0P000000MWKDWA4/fpga-soc-and-cpld-boards-and-kits?language=en_US"&gt;https://forums.intel.com/s/topic/0TO0P000000MWKDWA4/fpga-soc-and-cpld-boards-and-kits?language=en_US&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We hope that this information may help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Carlos_A.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Aug 2018 23:33:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250197#M2379</guid>
      <dc:creator>CarlosAM_INTEL</dc:creator>
      <dc:date>2018-08-10T23:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: max10 on chip flash write issue (without nios)</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250198#M2380</link>
      <description>&lt;P&gt;Thanks for the reply. But I can not find useful information which can help to solve this problem. Can someone help to answer this question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Sat, 11 Aug 2018 03:25:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250198#M2380</guid>
      <dc:creator>akong</dc:creator>
      <dc:date>2018-08-11T03:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: max10 on chip flash write issue (without nios)</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250199#M2381</link>
      <description>&lt;P&gt;Hello, spacetimerake:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me paraphrase my previous message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The proper persons to help you with your consultations can be found at the cited forum, please address your consultations through this channel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Carlos_A.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Aug 2018 15:39:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250199#M2381</guid>
      <dc:creator>CarlosAM_INTEL</dc:creator>
      <dc:date>2018-08-13T15:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: max10 on chip flash write issue (without nios)</title>
      <link>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250200#M2382</link>
      <description>&lt;P&gt;many thanks for the help. I have post my question to the correct forum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 05:53:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Embedded-Intel-Core-Processors/max10-on-chip-flash-write-issue-without-nios/m-p/250200#M2382</guid>
      <dc:creator>akong</dc:creator>
      <dc:date>2018-08-14T05:53:54Z</dc:date>
    </item>
  </channel>
</rss>

