Need an old version of MSP430 DLL V3 package - msp430

The latest version is not capable with the python-msp-tool, it needs the MSP430_Identify() function which was removed from the latest version of DLL V3.
So anyone can share me with your older version of DLL V3? The original zip file should with the name slac460c.zip, not slac460.zip. And the version number is 3.2.4.5 or less, not 3.2.5.4.
Thanks a lot!
EDIT:
I just find TI has released some older version of MSP430 DLL V3 package, but it seems it is used for developing under windows which all functions were packaged well. What I need is the pure source code that can be made under Linux with a Makefile.
EDIT:
I have compiled the latest version of libMSP430.so (3.2.5.4) for Raspberry Pi. To save other guys time, I have posted the file here.
EDIT:
the MSP430_Identify() can be instead by below two functions:
MSP430_OpenDevice and MSP430_GetFoundDevice. You can refer to MspDebug tool, they are using the up-to-date DLL driver.

MSP430 V3 is now open-source. You can easily find them in TI website, with all releases.

Related

How to tell buildroot to use a different version of source code of Qt

I have two version of buildroot downloaded. Older version (2014.05) of buildroot needs qtbase-opensource-src-5.2.1. It's OK because the source for this version of Qt has already been downloaded.
But I want to use second version of buildroot (2015.08) for some reason. However, second version needs qtbase-opensource-src-5.5.0. Unfortunately, the computer I use, is not able to download something from internet. So I want to use Qt 5.2.1 with the newer version (2015.08) of buildroot. I cannot figure out how to tell buildroot to use this version of Qt. In menuconfig, I cannot change the version. I cannot find a config or similar file to configure the version of Qt.
Buildroot does not support choosing a specific version of a package, because very often the way to build it will be different for a different version. For Qt5, this is certainly the case.
In your particular case, the easiest is probably to just remove package/qt5 from the buildroot tree, and replace it with a copy of package/qt5 from the 2014.05. Note that this will only work correctly if you use no package that depends on Qt. Also, there may be some changes needed to make it work in Buildroot 2015.08. For example, BR2_PREFER_STATIC_LIB has been renamed to BR2_STATIC_LIBS.
Maybe, however, it's easier to just put qtbase-opensource-src-5.5.0 on a flash drive :-)

Google NaCl with Qt on Windows

I have a project which is using Qt 4.7.4 version (also I can't rebuild it using qt4.8 or qt5 – there are a lot of errors appears, project is big and not mine so fixing issues would be even harder than erasing the whole code and write new code). So I need to make this project, well, working on NativeClient.
Is it even possible? I use Windows and Visual Studio, I was trying to google instructions about qt+nacl on Windows but just can’t find nothing.
Also which pepper version should I use if it depends on it?
Is your qt build supporting native client?
Please check out this
Windows
The Qt-Nacl is not support, for now, in Windows.
By the way, here is the github repository dedicated for it -> https://github.com/msorvig/qt5-qtbase-nacl
In the file nacl-readme it is written :
[...] Windows is not supported as a host platform.
Linux
If you want to compile in Linux, I have made a script that will compile Qt5.4 with NaCl with all the dependencies needed.
https://gist.github.com/theshadowx/438297ac465874a5e226
I also made a video that will show the different steps and a showCase at the end :
https://www.youtube.com/watch?v=q2pMv1Svtqw

Qt5 libs compiled with vc110 for vs2012?

I wanted to ask, are there qt5 pre-compiled versions for Visual Studio 2012. The add-in runs fine with me, but I can not start the program, because the appropriate *.libs missing.
Has someone happened to be there a compiled version to download or a configuration to translate the sources?
greetz, Tobias.
You can find some already compiled vs2012 Qt5 libraries in here.
But those are for x64 platform only...
(for example http://releases.qt-project.org/digia/5.0.2/latest_successful/qt-windows-opensource-5.0.2-msvc2012_64-x64-offline-2013-03-14-456.exe)
For x86 you will need to compile Qt by yourself, and that's a bit of pain (especially if you need WebKit included) + takes really long compilation time.
When compiling you can try and follow this:
http://qt-project.org/wiki/Building_Qt_5_from_Git
Plus, found some interesting russian guy blog site that may be worth checking out: http://habrahabr.ru/post/168671/

How to install two versions of Qt and tell the application which to use?

I am developing an application in Qt, but using D language (with QtD binding). I've noticed that my app crashes with Qt 4.7.x, so I need to use Qt 4.6.2 instead. However in my system Qt 4.7.2 is installed. Unfortunately I neither make QtD work with the latest Qt versions nor (I'm afraid) count on QtD developers...
The only thing I need to make my application install in system Qt 4.6.2 libs and use it, but let all the other applications still use Qt 4.7.2. Is it possible? If it is, how to do it then?
The answer to your question is the version of Qt is determined by the qmake you use to generate your Makefile.
/opt/QtSDK/Qt-4.6.2/bin/qmake
/opt/QtSDK/Qt-4.7.3/bin/qmake
Each will use the library in the directory.
It is possible to install several versions of the library into one system, and all package managers (rpm, deb) support this out of the box.
These libraries will be just differently named. For example, if id do
ls /usr/lib/ | grep libcurl
on my system, I'll get:
libcurl-gnutls.so.3
libcurl-gnutls.so.4
libcurl-gnutls.so.4.2.0
libcurl.so.3
libcurl.so.4
libcurl.so.4.2.0
, so, different version of the same library happily live together.
All you need to do is to link against the desired version of QT library. You need to sepcify it in linker options (don't remember the exact option).

Where to download the binaries of the latese version of System.Data.SQLite?

newbie here, sorry if this is an obvious question.
I have never used SQLite before. According to this page, the latest version of System.Data.SQLite should be downloaded from http://system.data.sqlite.org/.
But I couldn't find a download link. Should I download the source code then compile it on my local machine? If so, could you please tell me where to download the source code? Sorry, I have no idea what "Branches", "Leaves", "trunks" mean.
Thanks!
I just had this same issue. You can get the source code from here. It builds fine for me in VS2010.
Try this link instead: http://sqlite.phxsoftware.com/
The new http://system.data.sqlite.org/ site is the integrated web-server of a Fossil repository. Therefore it exposes SCM functionality like branches in its web-interface. You may take a look at fossil at: http://www.fossil-scm.org/
The latest System.data.sqlite binaries are available at
http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki
It has instructions/info and the latest binary versions for the variations of .Net and Visual Studio.

Resources