SDK example lwip_hhtpsrv_bm as XIP will not load page

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

SDK example lwip_hhtpsrv_bm as XIP will not load page

ソリューションへジャンプ
1,277件の閲覧回数
ronwal
Contributor III

Hello

Using the SDK example lwip_httpsrv_bm works just fine with "plain load image" activated.

Because RAM is very limited I need to switch to XIP mode and execute my code in the external SPIFI Flash.

But when I am deselecting "plain mode image", recompile and start, the website is not loading anymore inside the browser.

Any ideas?

Logging the http comunication, shows, that the data is sent out correctly...

 

My setup is:

LPC54018, MCUXPRESSO V11.7.1, SDK_2.x_LPCXpresso54018 2.8.2

 

Thanks in advance

Ron

ラベル(1)
0 件の賞賛
返信
1 解決策
1,248件の閲覧回数
Alice_Yang
NXP TechSupport
NXP TechSupport

Hello @ronwal 

 

Please replace the NON_DMA_MEMORY_ARRAY definition with:

/* Memory not usable by ENET DMA. */
#define NON_DMA_MEMORY_ARRAY \
    {                        \
        {0x0U, 0xFFFFFFFFU},    \
        {                    \
            0x0U, 0x0U       \
        }                    \
    }
 
(In the file of hwip_httpsrv_bm.c   71 line)
 
 
BR
Alice

元の投稿で解決策を見る

0 件の賞賛
返信
2 返答(返信)
1,242件の閲覧回数
ronwal
Contributor III

Thanks Alice, that solved my problem.

0 件の賞賛
返信
1,249件の閲覧回数
Alice_Yang
NXP TechSupport
NXP TechSupport

Hello @ronwal 

 

Please replace the NON_DMA_MEMORY_ARRAY definition with:

/* Memory not usable by ENET DMA. */
#define NON_DMA_MEMORY_ARRAY \
    {                        \
        {0x0U, 0xFFFFFFFFU},    \
        {                    \
            0x0U, 0x0U       \
        }                    \
    }
 
(In the file of hwip_httpsrv_bm.c   71 line)
 
 
BR
Alice
0 件の賞賛
返信