zephyr/samples/application_development/code_relocation/src/test_file1.c
Anas Nashif 9ab2a56751 cleanup: include/: move misc/printk.h to sys/printk.h
move misc/printk.h to sys/printk.h and
create a shim for backward-compatibility.

No functional changes to the headers.
A warning in the shim can be controlled with CONFIG_COMPAT_INCLUDES.

Related to #16539

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2019-06-27 22:55:49 -04:00

45 lines
1.2 KiB
C

/*
* Copyright (c) 2012-2014 Wind River Systems, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr.h>
#include <sys/printk.h>
u32_t var_sram2_data = 10U;
u32_t var_sram2_bss;
K_SEM_DEFINE(test, 0, 1);
const u32_t var_sram2_rodata = 100U;
__in_section(custom_section, static, var) u32_t var_custom_data = 1U;
extern void function_in_sram(s32_t value);
void function_in_custom_section(void);
void function_in_sram2(void)
{
/* Print values from sram2 */
printk("Address of function_in_sram2 %p\n", &function_in_sram2);
printk("Address of var_sram2_data %p\n", &var_sram2_data);
printk("Address of k_sem_give %p\n", &k_sem_give);
printk("Address of var_sram2_rodata %p\n", &var_sram2_rodata);
printk("Address of var_sram2_bss %p\n\n", &var_sram2_bss);
/* Print values from sram */
function_in_sram(var_sram2_data);
/* Print values which were placed using attributes */
printk("Address of custom_section, func placed using attributes %p\n",
&function_in_custom_section);
printk("Address of custom_section data placed using attributes %p\n\n",
&var_custom_data);
k_sem_give(&test);
}
__in_section(custom_section, static, fun) void function_in_custom_section(void)
{
return;
}