(INFO) LPCXpresso on RosaLinux

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

(INFO) LPCXpresso on RosaLinux

384件の閲覧回数
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by elektronist on Mon Apr 27 02:20:59 MST 2015
I've been using LPCXpresso since more than two years on RosaLinux but with a nasty problem of being squizzed into 8K debug limit even though it is -free- lisenced and 256K shown on info page. Also had on recent versions turkish locale and menu problems. Here I'd like to share my solution.

LPCXpresso from KDE menu should be run by 'run in terminal' checked.
With turkish locale and CMSIS (non LPCOpen) libraries LPC176x projects can't be compiled.

Terminal issue solved by using a script to run LPCXpresso.
Turkish locale issue solved by exporting LC_ALL=en_US.utf8 in this script.
And finally 8K issue is solved by adding /sbin into $PATH.

#!/bin/bash

export LC_ALL=en_US.utf8
PATH=$PATH:/sbin
export PATH

cd /usr/local/lpcxpresso_7.7.2_379/lpcxpresso/

./lpcxpresso



This is my script to start LPCXpresso and use fully -free- activated.

Note: After adding /sbin into the PATH variable LPCXpresso should be reactivated because activation codes changes.

Without /sbin in the path
crt_emu_cm3_nxp -info-license

couldn't find ip executable.

Now I'm happy to use LPCXpresso with 256K limit and get rid of any *buntu from my system. 

This solution possibly can be applied on OpenMandriva and Mageia.









0 件の賞賛
返信
1 返信

376件の閲覧回数
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by umut.bakir.Linux on Wed May 20 23:25:13 MST 2015
This is very good way to cancel debug limit LPCXpresso on ROSA. I tried the method . it runs. Thank you elektronist.
0 件の賞賛
返信