Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To find these more easily, use ctrl-F. Here you can enable the ".*". This is so you can use .* to substitute anything(See RegEx). You could probably use the "diff" command to see differences between the  two config files.

For example, you can search for .*ENABLED 1 to find all places where something is enabled in the cofig config file.

Next, go to the main.c and in the menu at top, go to Project→Options and Preprecessor→User Preprocessor→User Include Directories.

Here you need to include the paths of the header files used for the code. The paths need to be specified from the main.c file.

You can see paths of previously included files when you have selected preprocessor in the options window.

A path can for exmple example be"../../../../../../components/boards". Do include the path to the folder of the header file, not the file itself.

...

Then you need to add the .c files to you project. Rightclick Right-click the (bluetoothBluetooth)project in segger Segger or one of the folders under it, preferably with the same name as where it is located in the non-bluetooth folder. Then click "Add exisiting file..." and navigate to the non-bloototh folder and the .c file, and select it.

...