hlnd / nrf51-pure-gcc-setup

A simple and cross-platform GCC setup for nRF51-series development for Windows, OS X and Linux
BSD 3-Clause "New" or "Revised" License
131 stars 36 forks source link

S110 v7.0.0 release needs new offset #17

Closed janekm closed 10 years ago

janekm commented 10 years ago
liamstask commented 10 years ago

Found I needed to adjust this as well.

For clarity, I also find it's nice to represent the offsets in terms of kB:

FLASH (rx) : ORIGIN = 0x00000000 + 88K, LENGTH = 256K - 88K /* 88 kB is taken by S110, 168 kB for app. */
RAM (rwx) :  ORIGIN = 0x20000000 + 8K,  LENGTH = 16K - 8K   /* 8 kB is taken by S110,8 kB for app. */
hlnd commented 10 years ago

Thanks for letting me know Janek, and also thanks for the nice syntax suggestion Liam! Both are now fixed in master.