blob: 13347f8c2e950c06a9c999ab5ff53c8fa923c439 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
.. _faq:
==================================
Frequently Asked Questions (FAQ)
==================================
.. contents:: Contents
:local:
.. _faq-atoi:
How can I use ``atoi()``?
-------------------------
The :ref:`CodeSourcery GCC compiler <arm-gcc>` used to compile your
programs is configured to link against the `newlib
<http://sourceware.org/newlib/>`_ C library, and allows the use of any
of its headers.
.. _faq-dynamic-memory:
Why don't ``malloc()``/``new`` work?
------------------------------------
Due to our newlib configuration, dynamic memory allocation is
currently not available.
.. _faq-flash-tables:
How do I replace ``PROGMEM``/put data into Flash?
-------------------------------------------------
See :ref:`this note <arm-gcc-attribute-flash>`.
|