I'm trying to port GRBL 1.1 to the STM32F746 chip. Tell me the solution, thanks.

Revision:
0:9dcf85d9b2f3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/grblwin/grblwin.vcxproj	Mon Sep 04 12:05:05 2017 +0000
@@ -0,0 +1,129 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <ItemGroup Label="ProjectConfigurations">
+    <ProjectConfiguration Include="Debug|Win32">
+      <Configuration>Debug</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|Win32">
+      <Configuration>Release</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+  </ItemGroup>
+  <PropertyGroup Label="Globals">
+    <ProjectGuid>{8785D33C-F44C-44FA-9A16-0C93B895F459}</ProjectGuid>
+    <Keyword>Win32Proj</Keyword>
+    <RootNamespace>grblwin</RootNamespace>
+  </PropertyGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
+    <ConfigurationType>Application</ConfigurationType>
+    <UseDebugLibraries>true</UseDebugLibraries>
+    <CharacterSet>Unicode</CharacterSet>
+    <PlatformToolset>v140</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+    <ConfigurationType>Application</ConfigurationType>
+    <UseDebugLibraries>false</UseDebugLibraries>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <CharacterSet>Unicode</CharacterSet>
+    <PlatformToolset>v140</PlatformToolset>
+  </PropertyGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+  <ImportGroup Label="ExtensionSettings">
+  </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+  </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+  </ImportGroup>
+  <PropertyGroup Label="UserMacros" />
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+    <LinkIncremental>true</LinkIncremental>
+    <OutDir>j:\buildoutput\grblwin11\Debug\</OutDir>
+    <IntDir>$(OutDir)\</IntDir>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+    <LinkIncremental>false</LinkIncremental>
+    <OutDir>j:\buildoutput\grblwin11\Release\</OutDir>
+    <IntDir>$(OutDir)\</IntDir>
+  </PropertyGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+    <ClCompile>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <Optimization>Disabled</Optimization>
+      <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+    </ClCompile>
+    <Link>
+      <SubSystem>Console</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+    <ClCompile>
+      <WarningLevel>Level3</WarningLevel>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <Optimization>MaxSpeed</Optimization>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+    </ClCompile>
+    <Link>
+      <SubSystem>Console</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <OptimizeReferences>true</OptimizeReferences>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemGroup>
+    <None Include="ReadMe.txt" />
+  </ItemGroup>
+  <ItemGroup>
+    <ClInclude Include="..\grbl\config.h" />
+    <ClInclude Include="..\grbl\coolant_control.h" />
+    <ClInclude Include="..\grbl\cpu_map.h" />
+    <ClInclude Include="..\grbl\defaults.h" />
+    <ClInclude Include="..\grbl\eeprom.h" />
+    <ClInclude Include="..\grbl\gcode.h" />
+    <ClInclude Include="..\grbl\grbl.h" />
+    <ClInclude Include="..\grbl\jog.h" />
+    <ClInclude Include="..\grbl\limits.h" />
+    <ClInclude Include="..\grbl\motion_control.h" />
+    <ClInclude Include="..\grbl\nuts_bolts.h" />
+    <ClInclude Include="..\grbl\planner.h" />
+    <ClInclude Include="..\grbl\print.h" />
+    <ClInclude Include="..\grbl\probe.h" />
+    <ClInclude Include="..\grbl\protocol.h" />
+    <ClInclude Include="..\grbl\report.h" />
+    <ClInclude Include="..\grbl\serial.h" />
+    <ClInclude Include="..\grbl\settings.h" />
+    <ClInclude Include="..\grbl\spindle_control.h" />
+    <ClInclude Include="..\grbl\stepper.h" />
+    <ClInclude Include="..\grbl\system.h" />
+  </ItemGroup>
+  <ItemGroup>
+    <ClCompile Include="..\grbl\coolant_control.c" />
+    <ClCompile Include="..\grbl\eeprom.c" />
+    <ClCompile Include="..\grbl\gcode.c" />
+    <ClCompile Include="..\grbl\jog.c" />
+    <ClCompile Include="..\grbl\limits.c" />
+    <ClCompile Include="..\grbl\main.c" />
+    <ClCompile Include="..\grbl\motion_control.c" />
+    <ClCompile Include="..\grbl\nuts_bolts.c" />
+    <ClCompile Include="..\grbl\planner.c" />
+    <ClCompile Include="..\grbl\print.c" />
+    <ClCompile Include="..\grbl\probe.c" />
+    <ClCompile Include="..\grbl\protocol.c" />
+    <ClCompile Include="..\grbl\report.c" />
+    <ClCompile Include="..\grbl\serial.c" />
+    <ClCompile Include="..\grbl\settings.c" />
+    <ClCompile Include="..\grbl\spindle_control.c" />
+    <ClCompile Include="..\grbl\stepper.c" />
+    <ClCompile Include="..\grbl\system.c" />
+  </ItemGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+  <ImportGroup Label="ExtensionTargets">
+  </ImportGroup>
+</Project>
\ No newline at end of file