fix a bug of header file dependency error

1. in tos_k.h, port_config.h should go ahead of tos_cpu_types.h
This commit is contained in:
daishengdong
2020-02-18 10:38:02 +08:00
parent 5868b6bdb6
commit 0d6f72a351
5 changed files with 30 additions and 18 deletions

View File

@@ -24,8 +24,8 @@
#include <tos_cpu_def.h>
#include <tos_config.h>
#include <tos_config_default.h>
#include <tos_cpu_types.h>
#include <port_config.h>
#include <tos_cpu_types.h>
#include <port.h>
#include <tos_cpu.h>
#include <tos_config_check.h>