mciantyre / teensy4-rs

Rust support for the Teensy 4
Apache License 2.0
271 stars 31 forks source link

Add support for DTCM heap #112

Closed mciantyre closed 2 years ago

mciantyre commented 2 years ago

dtcm_heap_start() points to the recommended DTCM address for a heap. This mimics the behavior of the 0.2.0 BSP. If you use a heap, the table below shows how to migrate your heap initialization routines from 0.2.0 to 0.2.2.

Heap location Release 0.2.0 Release 0.2.2
DTCM heap_start() dtcm_heap_start()
OCRAM2 None heap_start()

See #110 for more information.