Merged in alinjerpelea/nuttx (pull request #1059)

boards: cxd56xx: spresense: add board_timerhook function

* boards: cxd56xx: spresense: add board_timerhook function

    in preparation for SDK we muts have a weak board_timerhook function

    Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>

* drivers: usbhost: add missing endif

    By accident an endif was missing.

    Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>

* boards: cxd56xx: audio: add build barrier

    The audio implementation should not be beuilt if the config
    CONFIG_CXD56_AUDIO is not set.

    Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>

* arch:arm:cxd56xx: add ge2d.h header

    The header is used by imageproc.

    Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>

Approved-by: Gregory Nutt <gnutt@nuttx.org>
This commit is contained in:
Alin Jerpelea
2019-10-23 13:12:21 +00:00
committed by Gregory Nutt
parent ca14affc46
commit f7af996f1d
4 changed files with 111 additions and 0 deletions
@@ -54,3 +54,9 @@ int weak_function spresense_main(int argc, char *argv[])
{
return nsh_main(argc, argv);
}
#ifdef CONFIG_SYSTEMTICK_HOOK
void weak_function board_timerhook(void)
{
}
#endif