<?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: s32k144 i2c write read in S32K</title>
    <link>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2080792#M47779</link>
    <description>&lt;P&gt;please see attach code&lt;/P&gt;&lt;P&gt;when add&amp;nbsp;OSIF_TimeDelay(20); the i2c also work wrong&lt;/P&gt;&lt;P&gt;please help to check it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Apr 2025 10:57:43 GMT</pubDate>
    <dc:creator>alice_th</dc:creator>
    <dc:date>2025-04-15T10:57:43Z</dc:date>
    <item>
      <title>s32k144 i2c write read</title>
      <link>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2080707#M47774</link>
      <description>&lt;P&gt;hello ,&lt;/P&gt;&lt;P&gt;when i use k144 board i2c with PTA2/A3&lt;/P&gt;&lt;DIV&gt;void main()&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;#define&amp;nbsp;CONVERT_T&amp;nbsp; 0xCC44&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; /* Write your code here */&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; lpi2c_master_state_t lpi2c1MasterState;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CLOCK_DRV_Init(&amp;amp;clockMan1_InitConfig0);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;PINS_DRV_Init(NUM_OF_CONFIGURED_PINS0, g_pin_mux_InitConfigArr0);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;LPUART_DRV_Init(INST_LPUART_1, &amp;amp;lpUartState1, &amp;amp;lpuart_1_InitConfig0);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;LPSPI_DRV_MasterInit(INST_LPSPI_1,&amp;amp;lpspi_1State,&amp;amp;lpspi_1_MasterConfig0);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; LPI2C_DRV_MasterInit(INST_LPI2C0, &amp;amp;lpi2c0_MasterConfig0,&amp;amp;lpi2c1MasterState);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; while(1)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; uint8_t cmd[2]={(uint8_t)(CONVERT_T &amp;gt;&amp;gt;8), (uint8_t)(CONVERT_T &amp;amp; 0xFF)};&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;uint8_t ret = LPI2C_DRV_MasterSendDataBlocking(INST_LPI2C0, cmd, 2, true, OSIF_WAIT_FOREVER);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; printf("ret=%d\n\r",ret);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;#if 0&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; uint8_t data[3];&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ret = LPI2C_DRV_MasterReceiveDataBlocking(INST_LPI2C0, data, 3, true,OSIF_WAIT_FOREVER);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; printf("ret=%d,data[0]=%x,d[1]=%x,d[2]=%x\n\r",ret,data[0],data[1],data[2]);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; float iTemp=(uint16_t)data[0]&amp;lt;&amp;lt;8 | data[1];&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //printf("iTemp=%.4f\n\r",((float)iTemp/256.0 + 40.0));&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;#endif&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; }&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; //as8579_set_clock();&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;INT_SYS_InstallHandler(PORTA_IRQn, PORTA_ISR, (isr_t *)0);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;INT_SYS_EnableIRQ(PORTA_IRQn);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;adc0_init();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;DIV&gt;the device addr is 0x44&lt;/DIV&gt;&lt;DIV&gt;when use&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;uint8_t cmd[2]={(uint8_t)(CONVERT_T &amp;gt;&amp;gt;8), (uint8_t)(CONVERT_T &amp;amp; 0xFF)};&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;uint8_t ret = LPI2C_DRV_MasterSendDataBlocking(INST_LPI2C0, cmd, 2, true, OSIF_WAIT_FOREVER);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; printf("ret=%d\n\r",ret);&lt;/DIV&gt;&lt;DIV&gt;i find the waveform like below,&amp;nbsp; it only send the addr 0x44&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="alice_th_0-1744708826625.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/333147i7123E65C070E0F2E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="alice_th_0-1744708826625.png" alt="alice_th_0-1744708826625.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but if send like this, you can see addr 0x44, 0xcc, 0x44 be send and also other data be send&lt;/P&gt;&lt;DIV&gt;uint8_t cmd[2]={(uint8_t)(CONVERT_T &amp;gt;&amp;gt;8), (uint8_t)(CONVERT_T &amp;amp; 0xFF)};&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;uint8_t ret = LPI2C_DRV_MasterSendDataBlocking(INST_LPI2C0, cmd, &lt;STRONG&gt;3,&lt;/STRONG&gt; true, OSIF_WAIT_FOREVER);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; printf("ret=%d\n\r",ret);&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="alice_th_1-1744709008738.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/333149i2171A7E80425C6CB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="alice_th_1-1744709008738.png" alt="alice_th_1-1744709008738.png" /&gt;&lt;/span&gt;&lt;P&gt;can you help to check , what is happend with i2c driver ?&lt;/P&gt;&lt;P&gt;lpi2c_master_user_config_t lpi2c0_MasterConfig0 = {&lt;BR /&gt;.slaveAddress = 68U,&lt;BR /&gt;.is10bitAddr = false,&lt;BR /&gt;.operatingMode = LPI2C_FAST_MODE,&lt;BR /&gt;.baudRate = 400000UL,&lt;BR /&gt;.transferType = LPI2C_USING_INTERRUPTS,&lt;BR /&gt;.dmaChannel = 0U,&lt;BR /&gt;.masterCallback = NULL,&lt;BR /&gt;.callbackParam = NULL&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;lpi2c_slave_user_config_t lpi2c0_SlaveConfig0 = {&lt;BR /&gt;.slaveAddress = 50U,&lt;BR /&gt;.is10bitAddr = false,&lt;BR /&gt;.operatingMode = LPI2C_STANDARD_MODE,&lt;BR /&gt;.slaveListening = true,&lt;BR /&gt;.transferType = LPI2C_USING_INTERRUPTS,&lt;BR /&gt;.dmaChannel = 0U,&lt;BR /&gt;.slaveCallback = NULL,&lt;BR /&gt;.callbackParam = NULL&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt;.base = PORTA,&lt;BR /&gt;.pinPortIdx = 2U,&lt;BR /&gt;.pullConfig = PORT_INTERNAL_PULL_UP_ENABLED,&lt;BR /&gt;.driveSelect = PORT_LOW_DRIVE_STRENGTH,&lt;BR /&gt;.passiveFilter = false,&lt;BR /&gt;.mux = PORT_MUX_ALT3,&lt;BR /&gt;.pinLock = false,&lt;BR /&gt;.intConfig = PORT_DMA_INT_DISABLED,&lt;BR /&gt;.clearIntFlag = false,&lt;BR /&gt;.gpioBase = NULL,&lt;BR /&gt;.digitalFilter = false,&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;.base = PORTA,&lt;BR /&gt;.pinPortIdx = 3U,&lt;BR /&gt;.pullConfig = PORT_INTERNAL_PULL_UP_ENABLED,&lt;BR /&gt;.driveSelect = PORT_LOW_DRIVE_STRENGTH,&lt;BR /&gt;.passiveFilter = false,&lt;BR /&gt;.mux = PORT_MUX_ALT3,&lt;BR /&gt;.pinLock = false,&lt;BR /&gt;.intConfig = PORT_DMA_INT_DISABLED,&lt;BR /&gt;.clearIntFlag = false,&lt;BR /&gt;.gpioBase = NULL,&lt;BR /&gt;.digitalFilter = false,&lt;BR /&gt;},&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 15 Apr 2025 09:26:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2080707#M47774</guid>
      <dc:creator>alice_th</dc:creator>
      <dc:date>2025-04-15T09:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: s32k144 i2c write read</title>
      <link>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2080792#M47779</link>
      <description>&lt;P&gt;please see attach code&lt;/P&gt;&lt;P&gt;when add&amp;nbsp;OSIF_TimeDelay(20); the i2c also work wrong&lt;/P&gt;&lt;P&gt;please help to check it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 10:57:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2080792#M47779</guid>
      <dc:creator>alice_th</dc:creator>
      <dc:date>2025-04-15T10:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: s32k144 i2c write read</title>
      <link>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2081475#M47807</link>
      <description>&lt;P&gt;Hi@&lt;SPAN&gt;alice_th&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;I test your project and the result is same.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_0-1744787964786.png" style="width: 772px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/333398i8E887FF5D55C1F48/image-dimensions/772x384?v=v2" width="772" height="384" role="button" title="Senlent_0-1744787964786.png" alt="Senlent_0-1744787964786.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_1-1744787997617.png" style="width: 745px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/333399iEE1EB8EEAB8AD00D/image-dimensions/745x370?v=v2" width="745" height="370" role="button" title="Senlent_1-1744787997617.png" alt="Senlent_1-1744787997617.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Apr 2025 07:20:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2081475#M47807</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2025-04-16T07:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: s32k144 i2c write read</title>
      <link>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2081548#M47816</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/188029"&gt;@Senlent&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you didn't connect the device, if connect device, should have ACK from device.&lt;/P&gt;&lt;P&gt;when i remove&amp;nbsp;OSIF_TimeDelay(20); or printf&lt;/P&gt;&lt;P&gt;uint8_t cmd[2]={(uint8_t)(CONVERT_T &amp;gt;&amp;gt;8), (uint8_t)(CONVERT_T &amp;amp; 0xFF)};&lt;BR /&gt;uint8_t ret = LPI2C_DRV_MasterSendDataBlocking(INST_LPI2C0, cmd, 2, true, OSIF_WAIT_FOREVER);&lt;BR /&gt;//printf("ret=%d\n\r",ret);&lt;BR /&gt;//OSIF_TimeDelay(20);&lt;BR /&gt;uint8_t data[3];&lt;BR /&gt;ret = LPI2C_DRV_MasterReceiveDataBlocking(INST_LPI2C0, data, 3, true,OSIF_WAIT_FOREVER);&lt;/P&gt;&lt;P&gt;then waveform become below, it seems the send data is ok, why delay, or printf will influence i2c communicate ?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="alice_th_0-1744791471203.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/333415iCC84FBA05237DBB9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="alice_th_0-1744791471203.png" alt="alice_th_0-1744791471203.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Apr 2025 08:25:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2081548#M47816</guid>
      <dc:creator>alice_th</dc:creator>
      <dc:date>2025-04-16T08:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: s32k144 i2c write read</title>
      <link>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2081592#M47822</link>
      <description>&lt;P&gt;&lt;A href="mailto:Hi@alice_th" target="_blank"&gt;Hi@alice_th&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;This may be related to the features of your slave device, for example, whether it is necessary to perform a read operation within a fixed time after your write operation. You can use two S32K144 to directly simulate the master-slave operation of L2C, and we also have examples for reference, so you can check whether this problem may be caused by your slave device.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Apr 2025 08:59:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2081592#M47822</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2025-04-16T08:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: s32k144 i2c write read</title>
      <link>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2082290#M47870</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;A href="https://community.nxp.com/t5/user/viewprofilepage/user-id/188029" target="_blank"&gt;@Senlent&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;there is no special after send for slave device, look at the spec when send complete, it should wait for the measurement, then read.&lt;/P&gt;&lt;P&gt;SCL空闲 ---&amp;gt; SCL IDLE&lt;/P&gt;&lt;P&gt;I2C 地址 ——&amp;gt; I2C address&lt;/P&gt;&lt;P&gt;指令高字节 ---&amp;gt; command MSB&lt;/P&gt;&lt;P&gt;指令低字节 ---&amp;gt; command LSB&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="alice_th_0-1744861717548.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/333573i4B0809B0EC39B6CA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="alice_th_0-1744861717548.png" alt="alice_th_0-1744861717548.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;the wired thing is when add the delay after receive, it still same wrong waveform as before.&lt;/P&gt;&lt;P&gt;uint8_t cmd[2]={(uint8_t)(CONVERT_T &amp;gt;&amp;gt;8), (uint8_t)(CONVERT_T &amp;amp; 0xFF)};&lt;BR /&gt;uint8_t ret = LPI2C_DRV_MasterSendDataBlocking(INST_LPI2C0, cmd, 2, true, OSIF_WAIT_FOREVER);&lt;BR /&gt;&lt;BR /&gt;uint8_t data[3];&lt;BR /&gt;ret = LPI2C_DRV_MasterReceiveDataBlocking(INST_LPI2C0, data, 3, true,OSIF_WAIT_FOREVER);&lt;/P&gt;&lt;P&gt;//printf("ret=%d\n\r",ret);&lt;BR /&gt;&lt;STRONG&gt;OSIF_TimeDelay(20);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;then waveform become below, it seems the send data is ok, why delay, or printf will influence i2c communicate ?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 06:43:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2082290#M47870</guid>
      <dc:creator>alice_th</dc:creator>
      <dc:date>2025-04-17T06:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: s32k144 i2c write read</title>
      <link>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2082389#M47877</link>
      <description>&lt;P&gt;&lt;A href="mailto:Hi@alice_th" target="_blank"&gt;Hi@alice_th&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I don't have the sensor you used and tested, so I can't help you reproduce the problem.&lt;/P&gt;
&lt;P&gt;But I am sure that this is related to the sensor.&lt;/P&gt;
&lt;P&gt;For example, I tested a sensor and added "OSIF_TimeDelay" to it as you said.&lt;/P&gt;
&lt;P&gt;I tested it in two ways and both met my expectations.&lt;/P&gt;
&lt;P&gt;Test 1.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_0-1744877537607.png" style="width: 741px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/333640iD19967936AF67F4B/image-dimensions/741x402?v=v2" width="741" height="402" role="button" title="Senlent_0-1744877537607.png" alt="Senlent_0-1744877537607.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Test 2.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_2-1744877915900.png" style="width: 688px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/333642i05186C97B7A4C9C8/image-dimensions/688x222?v=v2" width="688" height="222" role="button" title="Senlent_2-1744877915900.png" alt="Senlent_2-1744877915900.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_1-1744877877992.png" style="width: 725px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/333641i99B1C14F9C99AE06/image-dimensions/725x377?v=v2" width="725" height="377" role="button" title="Senlent_1-1744877877992.png" alt="Senlent_1-1744877877992.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You can see there is no probem on myside.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 08:21:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k144-i2c-write-read/m-p/2082389#M47877</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2025-04-17T08:21:16Z</dc:date>
    </item>
  </channel>
</rss>

