Followed steps in stated in read me still unable to compile thingy 52 sdk
Followed steps in stated in read me still unable to compile thingy 52 sdk
While running setup_sdk.bat having below error, please refer screenshot

Hi,
I am sorry for the delay.
The error message indicates that you have not installed make, or that it is installed but not found by the build script.
The readme suggests getting make from http://gnuwin32.sourceforge.net/packages/make.htm. (Although you are free to choose version and implementation of make as you would like.)
In order for make to be found by the build script, you need to put the install path of make in the PATH system environment variable. This is how to do that in Windows 10:
From control panel, select System, then "Advanced system settings". That should give you the "System Properties" window. Find the "Advanced" tab:
Click the "Environment Variables..." button. This gives you the "Environment Variables" window. There are two lists there. The top one is for your user only, and any settings there will affect your user, but not any other user on the same computer, if any. The bottom one is "System variables", which is system wide for all users. Which one to use depend on whether you want to set this up only for yourself, or if you want it set up for other users of the computer as well.
Find the "PATH" entry in the list, select it, and click the "Edit...'" button below the list. You should then get an "Edit environment variable" window.
To add an entry, click the "New" button on the top right. You can then enter a new line in the list. You need to put in the file path for where the installed make.exe is to be found. On my computer, that path is "C:\Program Files (x86)\GnuWin32\bin", but it depends on what installation of make you are using.
Regards,
Terje
Hi,
I suspect the error message might be problems with running the rm command. What output do you get from the following command?
rm --version
The hex file is built for the Thingy:52, not for the nRF52832 DK. You should not expect the firmware to work on the DK. This is because buttons, LEDs and other peripherals are connected at different GPIO pins or not existing at all on the DK. Also, for instance clock sources may differ. In general, different boards require different configuration of the project. You should test the project on a Thingy:52.
Regards,
Terje
Hi,
Please find output of "rm --version" as follows:
Microsoft Windows [Version 10.0.18363.1316]
(c) 2019 Microsoft Corporation. All rights reserved.
C:\Users\SMET>rm --version
'rm' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\SMET>cd..
C:\Users>d:
D:\>cd D:\Megha\Nordic\Megha_Embedded_System\thingysdkv210\project\pca20020_s132\armgcc
D:\Megha\Nordic\Megha_Embedded_System\thingysdkv210\project\pca20020_s132\armgcc>rm --version
'rm' is not recognized as an internal or external command,
operable program or batch file.
Regards,
Megha Choudhari
Hi,
This means that you do not have the command line program "rm" installed on your computer, or it is installed but the file path for the rm executable (rm.exe) is not in the PATH environment variable.
You can get rm for instance by installing Minimalist GNU for Windows (MinGW).
Regards,
Terje
Hi,
I have already installed MinGW still not recognized "rm --version", so I have set it in the PATH environment variable and execute again "rm --version". Please find below attached result -
Microsoft Windows [Version 10.0.18363.1316]
(c) 2019 Microsoft Corporation. All rights reserved.
C:\Users\SMET>rm --version
rm (GNU coreutils) 5.97
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software. You may redistribute copies of it under the terms of
the GNU General Public License <www.gnu.org/.../gpl.html>.
There is NO WARRANTY, to the extent permitted by law.
Written by Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering.
C:\Users\SMET>cd..
C:\Users>d:
D:\>cd D:\Megha\Nordic\Megha_Embedded_System\thingysdkv210\project\pca20020_s132\armgcc
D:\Megha\Nordic\Megha_Embedded_System\thingysdkv210\project\pca20020_s132\armgcc>rm --version
rm (GNU coreutils) 5.97
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software. You may redistribute copies of it under the terms of
the GNU General Public License <www.gnu.org/.../gpl.html>.
There is NO WARRANTY, to the extent permitted by law.
Written by Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering.

Regards,
Megha Choudhari
Hi,
With that now in order, you should be able to go back to building the project, with "make -j"?
Regards,
Terje
Hi,
With that now in order, you should be able to go back to building the project, with "make -j"?
Regards,
Terje
Hi,
Have a nice day!!!!
Thanks a lot. Able to build successfully.
Once again thanks for your valuable time, looking forward for future support also.
Regards,
Megha Choudhari