Skip to content

Commit 2c8fd79

Browse files
committed
Make file paths clearer
1 parent 35bce40 commit 2c8fd79

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/DEBUGGING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ First and foremost is to build it using CMake's `Debug` build type, which you ca
1919
cmake -DCMAKE_BUILD_TYPE=Debug ..
2020
```
2121

22-
However, this will greatly increase the output's size, potentially making it bigger than the nRF52832's flash and causing the build to fail. If this occurs, you can make the linker think that the available flash space is larger (InfiniEmu supports up to 8MB) by tweaking the `gcc_nrf52.ld` file at the root of the project:
22+
However, this will greatly increase the output's size, potentially making it bigger than the nRF52832's flash and causing the build to fail. If this occurs, you can make the linker think that the available flash space is larger (InfiniEmu supports up to 8MB) by tweaking the `gcc_nrf52.ld` file at the root of the InfiniTime project:
2323

2424
```diff
2525
MEMORY
@@ -37,7 +37,7 @@ You may also increase the RAM capacity in a similar manner if necessary by chang
3737

3838
### Logging
3939

40-
Although not strictly related to debugging as described in this document, it can be very useful to see the messages that the InfiniTime firmware logs when running. To enable this you must uncomment a couple lines in the `src/CMakeLists.txt` file:
40+
Although not strictly related to debugging as described in this document, it can be very useful to see the messages that the InfiniTime firmware logs when running. To enable this you must uncomment a couple lines in InfiniTime's `/src/CMakeLists.txt` file:
4141

4242
```diff
4343
# NRF SDK Logging

0 commit comments

Comments
 (0)