<?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 Re: CSEC ON 32K148 in S32K</title>
    <link>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1248687#M10238</link>
    <description>&lt;P&gt;Hi Koorosh,&lt;/P&gt;
&lt;P&gt;SC668037VMH/R is a custom part number and I can see there are some differences. Please ask your OEM for details. I'm not allowed to share details about custom devices. &lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lukas&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 19 Mar 2021 07:08:21 GMT</pubDate>
    <dc:creator>lukaszadrapa</dc:creator>
    <dc:date>2021-03-19T07:08:21Z</dc:date>
    <item>
      <title>CSEC ON 32K148</title>
      <link>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1240557#M10062</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;My target is S32K148.&lt;/P&gt;&lt;P&gt;I'm running the NXP project (Configure_parts_and_load_keys) with a little bit of modification:&lt;/P&gt;&lt;P&gt;This mode will change the MASTER_ECU_KEY_Value from blank(0xFFs) to zero,&lt;/P&gt;&lt;P&gt;Also will load zero in KEY_1 slot(key_id=4).&lt;/P&gt;&lt;P&gt;while it is successful in loading zeros in &lt;FONT size="2" color="#3f7f5f"&gt;MASTER_ECU_KEY slot(key=1)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#3f7f5f"&gt;by comparing calculated M4,M5 to M4_OUT/M5_OUT however it fails with loading KEY_1 with the zero value.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#005032"&gt;uint32_t&lt;/FONT&gt;&lt;FONT size="2"&gt; BLANK_KEY_VALUE[4] = {0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF}&lt;/FONT&gt;;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#005032"&gt;uint32_t&lt;/FONT&gt;&lt;FONT size="2"&gt; ZERO_KEY_VALUE[4] = {0x00000000, 0x00000000, 0x00000000, 0x00000000};&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#3f7f5f"&gt;//install zero values for Master_ECU_KEY&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2"&gt;calculate_M1_to_M5(M1, M2, M3, M4, M5, BLANK_KEY_VALUE&lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/*ZERO_KEY_VALUE*/&lt;/FONT&gt;&lt;FONT size="2"&gt;,&lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/*MASTER_ECU_KEY_VALUE_1*/&lt;/FONT&gt;&lt;FONT size="2"&gt; ZERO_KEY_VALUE, &lt;/FONT&gt;&lt;I&gt;&lt;FONT size="2" color="#0000c0"&gt;MASTER_ECU_KEY&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;, &lt;/FONT&gt;&lt;I&gt;&lt;FONT size="2" color="#0000c0"&gt;MASTER_ECU_KEY&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;, 1, 0); &lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/* Calculate M1 to M5 in Software */&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2"&gt;csec_error = LOAD_KEY(M4_out, M5_out, M1, M2, M3, &lt;/FONT&gt;&lt;I&gt;&lt;FONT size="2" color="#0000c0"&gt;MASTER_ECU_KEY&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;); &lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/* Load the key using SW calculated M1 to M3, and it returns M4 and M5 */&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;result = compare_results(M4, M4_out); &lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/* Compare M4 generated by SW with the M4_out returned by CSEc */&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;/* Load KEY_1 */&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2"&gt;calculate_M1_to_M5(M1, M2, M3, M4, M5, &lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/*MASTER_ECU_KEY_VALUE*/&lt;/FONT&gt;&lt;FONT size="2"&gt;ZERO_KEY_VALUE,&lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/* KEY_1_VALUE*/&lt;/FONT&gt;&lt;FONT size="2"&gt;ZERO_KEY_VALUE, &lt;/FONT&gt;&lt;I&gt;&lt;FONT size="2" color="#0000c0"&gt;MASTER_ECU_KEY&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;, &lt;/FONT&gt;&lt;I&gt;&lt;FONT size="2" color="#0000c0"&gt;KEY_1&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;, 1, 0); &lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/* Calculate M1 to M5 in Software, Authorizing Key = Master ECU Key */&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2"&gt;csec_error = LOAD_KEY(M4_out, M5_out, M1, M2, M3, &lt;/FONT&gt;&lt;I&gt;&lt;FONT size="2" color="#0000c0"&gt;KEY_1&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;); &lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/* Load the key using M1 to M3, returns M4 and M5 */&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;result = compare_results(M4, M4_out); &lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/* Compare M4 generated by SW with the M4_out returned by CSEc */&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Please tell me what I'm doing wrong.&lt;/P&gt;&lt;P&gt;Koorosh Hajiani&lt;/P&gt;</description>
      <pubDate>Thu, 04 Mar 2021 22:49:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1240557#M10062</guid>
      <dc:creator>hajianik</dc:creator>
      <dc:date>2021-03-04T22:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: CSEC ON 32K148</title>
      <link>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1240871#M10065</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I did quick test on my side and it works. The only thing I changed in default project Configure_parts_and_load_keys from AN5401 is CSEc_keys.h:&lt;/P&gt;
&lt;P&gt;uint32_t MASTER_ECU_KEY_VALUE[4] = {0, 0, 0, 0};&lt;/P&gt;
&lt;P&gt;uint32_t KEY_1_VALUE[4] = {0, 0, 0, 0};&lt;/P&gt;
&lt;P&gt;No other changes.&lt;/P&gt;
&lt;P&gt;Output of compare_results() function was 1 (success) in both cases.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lukas&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 09:12:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1240871#M10065</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2021-03-05T09:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: CSEC ON 32K148</title>
      <link>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1241985#M10089</link>
      <description>&lt;P&gt;Hi Lucas,&lt;/P&gt;&lt;P&gt;I followed your advise and it did not work.&lt;/P&gt;&lt;P&gt;I mean I still can not load KEY_1, NOW YOU JUST CHANGE THE NAME OF POINTER TO THE FUNCTION. THAT SHOIULD NOT MATTER.&lt;/P&gt;&lt;P&gt;I did what you did however the result is the same :&lt;/P&gt;&lt;P&gt;I can successfully load the ECU_MASTER_KEY_VALUE of zeros but it fails in loading KEY_1.&lt;/P&gt;&lt;P&gt;I used several boards to do this, the RESET_PARTS_TO_FACTORY_RESET does not work even with&lt;/P&gt;&lt;P&gt;ECU_MASTER_KEY_VALUE of zeros . so each time I need to do this on a new PCB.&lt;/P&gt;&lt;P&gt;This a mystery, here is the modified code based on your suggestion:&lt;/P&gt;&lt;P&gt;* CSEc_keys.h&lt;BR /&gt;&amp;nbsp;*&lt;BR /&gt;&amp;nbsp;*&amp;nbsp; Created on: Oct 19, 2016&lt;BR /&gt;&amp;nbsp;*&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Author: B55457&lt;BR /&gt;&amp;nbsp;*/&lt;/P&gt;&lt;P&gt;#ifndef CSEC_KEYS_H_&lt;BR /&gt;#define CSEC_KEYS_H_&lt;/P&gt;&lt;P&gt;uint32_t BLANK_KEY_VALUE[4] = &amp;nbsp;&amp;nbsp;{0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF}; //When key value is not written it is all FFs&lt;BR /&gt;//uint32_t MASTER_ECU_KEY_VALUE[4] =&amp;nbsp;{0xD275F12C, 0xA863A7B5, 0xF933DF92, 0x6498FB4D}; //MASTER_ECU_KEY&lt;BR /&gt;//uint32_t MASTER_ECU_KEY_VALUE[4] =&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {0x43414e44, 0x69566120, 0x4d535452, 0x204b4559}; //MASTER_ECU_KEY_GM&lt;BR /&gt;uint32_t MASTER_ECU_KEY_VALUE[4] = {0, 0, 0, 0};&lt;/P&gt;&lt;P&gt;uint32_t KEY_1_VALUE[4] = {0, 0, 0, 0};&lt;/P&gt;&lt;P&gt;uint32_t BOOT_MAC_KEY_VALUE[4] =&amp;nbsp;{0x12340000, 0x00000000, 0x00000000, 0x00005678}; //BOOT_MAC_KEY&lt;BR /&gt;//uint32_t KEY_1_VALUE[4] =&amp;nbsp;&amp;nbsp;&amp;nbsp;{0x2FF8B03C, 0x5C540546, 0x5A9C94BD, 0x2D863279}; //KEY_1&lt;BR /&gt;uint32_t KEY_11_VALUE[4] =&amp;nbsp;&amp;nbsp;&amp;nbsp;{0x85852FF8, 0xE7860C89, 0xB3AB9D63, 0xB8D6288F}; //KEY_11&lt;BR /&gt;uint32_t RAM_KEY_VALUE[4] =&amp;nbsp;&amp;nbsp;&amp;nbsp;{0x68B674CB, 0x8198A250, 0x3A285100, 0xF4DDC40A}; //RAM_KEY&lt;BR /&gt;//uint32_t ZERO_KEY_VALUE[4] = {0x00000000, 0x00000000, 0x00000000, 0x00000000};&lt;BR /&gt;#endif /* CSEC_KEYS_H_ */&lt;/P&gt;&lt;P align="left"&gt;/* Load KEY_1 */&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2"&gt;calculate_M1_to_M5(M1, M2, M3, M4, M5, MASTER_ECU_KEY_VALUE&lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/*ZERO_KEY_VALUE*/&lt;/FONT&gt;&lt;FONT size="2"&gt;, KEY_1_VALUE&lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/*ZERO_KEY_VALUE*/&lt;/FONT&gt;&lt;FONT size="2"&gt;, &lt;/FONT&gt;&lt;I&gt;&lt;FONT size="2" color="#0000c0"&gt;MASTER_ECU_KEY&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;, &lt;/FONT&gt;&lt;I&gt;&lt;FONT size="2" color="#0000c0"&gt;KEY_1&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;, 1, 0); &lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/* Calculate M1 to M5 in Software, Authorizing Key = Master ECU Key */&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2"&gt;csec_error = LOAD_KEY(M4_out, M5_out, M1, M2, M3, &lt;/FONT&gt;&lt;I&gt;&lt;FONT size="2" color="#0000c0"&gt;KEY_1&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;); &lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/* Load the key using M1 to M3, returns M4 and M5 */&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;result = compare_results(M4, M4_out); &lt;/FONT&gt;&lt;FONT size="2" color="#3f7f5f"&gt;/* Compare M4 generated by SW with the M4_out returned by CSEc */&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Koorosh Hajiani&lt;/P&gt;</description>
      <pubDate>Mon, 08 Mar 2021 20:51:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1241985#M10089</guid>
      <dc:creator>hajianik</dc:creator>
      <dc:date>2021-03-08T20:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: CSEC ON 32K148</title>
      <link>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1242525#M10099</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;attached are working projects.&lt;/P&gt;
&lt;P&gt;Notes:&lt;/P&gt;
&lt;P&gt;- it's necessary to execute both projects from RAM&lt;/P&gt;
&lt;P&gt;- when resetting back to factory state, it's necessary to change the MASTER_ECU_KEY directly in DBG_AUTH function. It's hardcoded here for some reasons. The CSEc_keys.h file is not used here:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lukaszadrapa_0-1615293391028.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/139137i1C53CB53B5CE2583/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lukaszadrapa_0-1615293391028.png" alt="lukaszadrapa_0-1615293391028.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;- and I found small bug in startup code when creating new application project in S32DS 2.2 for S32K148. Not sure what kind of project you have but maybe for others - it's necessary to call SystemInit after stack initialization. Move it like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lukaszadrapa_1-1615293784604.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/139138i0D02845FAB3417E0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lukaszadrapa_1-1615293784604.png" alt="lukaszadrapa_1-1615293784604.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lukas&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 12:45:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1242525#M10099</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2021-03-09T12:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: CSEC ON 32K148</title>
      <link>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1242718#M10104</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I was the culprit, I was messing around with &lt;STRONG&gt;calculate_M1_TO_M5&lt;/STRONG&gt; function for keys greater than or equal than KEY_1.&lt;/P&gt;&lt;P&gt;I DELETED MY CHANGES AND IT SEEMS TO BE WORKING.&lt;/P&gt;&lt;P&gt;sorry for wasting your time. just one more question :&lt;/P&gt;&lt;P&gt;For keys who reside on bank1(kbs=1) would these function work?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Koorosh&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 19:00:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1242718#M10104</guid>
      <dc:creator>hajianik</dc:creator>
      <dc:date>2021-03-09T19:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: CSEC ON 32K148</title>
      <link>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1244089#M10132</link>
      <description>&lt;P&gt;Hi Koorosh,&lt;/P&gt;
&lt;P&gt;yes, no difference, it's the same for kbs=1.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lukas&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 09:53:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1244089#M10132</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2021-03-11T09:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: CSEC ON 32K148</title>
      <link>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1247375#M10217</link>
      <description>&lt;P&gt;Hi Lukas,&lt;/P&gt;&lt;P&gt;When updating a key, in addition to updating its value&amp;nbsp;can we change its attributes?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Koorosh&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Mar 2021 16:05:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1247375#M10217</guid>
      <dc:creator>hajianik</dc:creator>
      <dc:date>2021-03-17T16:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: CSEC ON 32K148</title>
      <link>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1247580#M10219</link>
      <description>&lt;P&gt;Hi Lukas,&lt;/P&gt;&lt;P&gt;which part numbers of S32K148 will support the GM_SHE (20 KEY SLOTS).&lt;/P&gt;&lt;P&gt;I have the S32K 148_EVAL BOARD that supports only 17 slots, on the production PCB same code supports 10 slots.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Koorosh&lt;/P&gt;</description>
      <pubDate>Wed, 17 Mar 2021 20:24:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1247580#M10219</guid>
      <dc:creator>hajianik</dc:creator>
      <dc:date>2021-03-17T20:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: CSEC ON 32K148</title>
      <link>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1247960#M10224</link>
      <description>&lt;P&gt;Hi Koorosh,&lt;/P&gt;
&lt;P&gt;yes, the attributes can be changed when updating a key.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lukas&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Mar 2021 08:30:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1247960#M10224</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2021-03-18T08:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: CSEC ON 32K148</title>
      <link>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1247965#M10225</link>
      <description>&lt;P&gt;Hi Koorosh,&lt;/P&gt;
&lt;P&gt;if CSE is available, there are 20 Keys. If you can use only 10 keys then you have configured 10 keys by Program Partition command:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lukaszadrapa_0-1616056409066.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/140016iC5D53E8317667C9C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lukaszadrapa_0-1616056409066.png" alt="lukaszadrapa_0-1616056409066.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lukas&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Mar 2021 08:34:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1247965#M10225</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2021-03-18T08:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: CSEC ON 32K148</title>
      <link>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1248395#M10231</link>
      <description>&lt;P&gt;Hi Lucas,&lt;/P&gt;&lt;P&gt;Thanks for your response.&lt;/P&gt;&lt;P&gt;well it clears it up that we have 20 slots and only 17 user key. then why the enum&lt;/P&gt;&lt;P&gt;csec_key_id_t goes passed key_17, all the way through key_21?&lt;/P&gt;&lt;P&gt;second part of my question:&lt;/P&gt;&lt;P&gt;It is the same code that's running both on the EVAL board and the production board.&lt;/P&gt;&lt;P&gt;On the eval board I can load key_1 to key_17 however on the production board the same code will load key slots from key_1 to key_10.&lt;/P&gt;&lt;P&gt;any attempt to load passed key_10 fails.(production part number:SC668037VMH/R) which would support 20 keys.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kooosh&lt;/P&gt;</description>
      <pubDate>Thu, 18 Mar 2021 20:05:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1248395#M10231</guid>
      <dc:creator>hajianik</dc:creator>
      <dc:date>2021-03-18T20:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: CSEC ON 32K148</title>
      <link>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1248687#M10238</link>
      <description>&lt;P&gt;Hi Koorosh,&lt;/P&gt;
&lt;P&gt;SC668037VMH/R is a custom part number and I can see there are some differences. Please ask your OEM for details. I'm not allowed to share details about custom devices. &lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Lukas&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Mar 2021 07:08:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/CSEC-ON-32K148/m-p/1248687#M10238</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2021-03-19T07:08:21Z</dc:date>
    </item>
  </channel>
</rss>

