Have a entry-gnu-linux.c.
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2019-11-18 NIIBE Yutaka <gniibe@fsij.org>
|
||||||
|
|
||||||
|
* rules.mk (CSRC): Change the rule of entry*.c.
|
||||||
|
* entry.c: It's only for Cortex-M, now.
|
||||||
|
* entry-gnu-linux.c: New file.
|
||||||
|
|
||||||
2019-11-18 NIIBE Yutaka <gniibe@fsij.org>
|
2019-11-18 NIIBE Yutaka <gniibe@fsij.org>
|
||||||
|
|
||||||
* entry.c: Use chopstx-cortex-m.h.
|
* entry.c: Use chopstx-cortex-m.h.
|
||||||
|
|||||||
45
entry-gnu-linux.c
Normal file
45
entry-gnu-linux.c
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
/*
|
||||||
|
* entry.c - Entry routine.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2017, 2019
|
||||||
|
* Flying Stone Technology
|
||||||
|
* Author: NIIBE Yutaka <gniibe@fsij.org>
|
||||||
|
*
|
||||||
|
* This file is a part of Chopstx, a thread library for embedded.
|
||||||
|
*
|
||||||
|
* Chopstx is free software: you can redistribute it and/or modify it
|
||||||
|
* under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Chopstx is distributed in the hope that it will be useful, but
|
||||||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* As additional permission under GNU GPL version 3 section 7, you may
|
||||||
|
* distribute non-source form of the Program without the copy of the
|
||||||
|
* GNU GPL normally required by section 4, provided you inform the
|
||||||
|
* recipients of GNU GPL by a written offer.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <chopstx.h>
|
||||||
|
|
||||||
|
int emulated_main (int, const char **);
|
||||||
|
void chx_init (struct chx_thread *);
|
||||||
|
void chx_systick_init (void);
|
||||||
|
extern struct chx_thread main_thread;
|
||||||
|
|
||||||
|
int
|
||||||
|
main (int argc, const char *argv[])
|
||||||
|
{
|
||||||
|
chx_init (&main_thread);
|
||||||
|
chx_systick_init ();
|
||||||
|
emulated_main (argc, argv);
|
||||||
|
}
|
||||||
15
entry.c
15
entry.c
@@ -33,20 +33,6 @@
|
|||||||
|
|
||||||
#include "board.h"
|
#include "board.h"
|
||||||
|
|
||||||
#ifdef GNU_LINUX_EMULATION
|
|
||||||
int emulated_main (int, const char **);
|
|
||||||
void chx_init (struct chx_thread *);
|
|
||||||
void chx_systick_init (void);
|
|
||||||
extern struct chx_thread main_thread;
|
|
||||||
|
|
||||||
int
|
|
||||||
main (int argc, const char *argv[])
|
|
||||||
{
|
|
||||||
chx_init (&main_thread);
|
|
||||||
chx_systick_init ();
|
|
||||||
emulated_main (argc, argv);
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
#if defined(USE_SYS3) || defined(USE_SYS_CLOCK_GPIO_SETTING)
|
#if defined(USE_SYS3) || defined(USE_SYS_CLOCK_GPIO_SETTING)
|
||||||
#define REQUIRE_CLOCK_GPIO_SETTING_IN_SYS
|
#define REQUIRE_CLOCK_GPIO_SETTING_IN_SYS
|
||||||
#include "sys.h"
|
#include "sys.h"
|
||||||
@@ -258,4 +244,3 @@ handler vector_table[] __attribute__ ((section(".startup.vectors"))) = {
|
|||||||
chx_handle_intr, chx_handle_intr, chx_handle_intr, chx_handle_intr,
|
chx_handle_intr, chx_handle_intr, chx_handle_intr, chx_handle_intr,
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
#endif
|
|
||||||
|
|||||||
8
rules.mk
8
rules.mk
@@ -1,6 +1,12 @@
|
|||||||
# Chopstx make rules.
|
# Chopstx make rules.
|
||||||
|
|
||||||
CSRC += $(CHOPSTX)/entry.c $(CHOPSTX)/chopstx.c
|
ifeq ($(EMULATION),)
|
||||||
|
CSRC += $(CHOPSTX)/entry.c
|
||||||
|
else
|
||||||
|
CSRC += $(CHOPSTX)/entry-gnu-linux.c
|
||||||
|
endif
|
||||||
|
|
||||||
|
CSRC += $(CHOPSTX)/chopstx.c
|
||||||
|
|
||||||
ifneq ($(USE_EVENTFLAG),)
|
ifneq ($(USE_EVENTFLAG),)
|
||||||
CSRC += $(CHOPSTX)/eventflag.c
|
CSRC += $(CHOPSTX)/eventflag.c
|
||||||
|
|||||||
Reference in New Issue
Block a user