Advertisement
Guest User

Still

a guest
Aug 11th, 2015
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.16 KB | None | 0 0
  1. *** Using Compiler 'V5.05 update 2 (build 169)', folder: 'C:\Keil_v5\ARM\ARMCC\Bin'
  2. Rebuild target 'JETZTABER Configuration'
  3. compiling stm32f7xx_hal.c...
  4. compiling stm32f7xx_hal_dma2d.c...
  5. compiling stm32f7xx_hal_cortex.c...
  6. compiling stm32f7xx_hal_flash.c...
  7. compiling stm32f7xx_hal_flash_ex.c...
  8. compiling stm32f7xx_hal_iwdg.c...
  9. compiling stm32f7xx_hal_dma.c...
  10. compiling stm32f7xx_hal_dcmi.c...
  11. compiling stm32f7xx_hal_i2c_ex.c...
  12. compiling stm32f7xx_hal_spdifrx.c...
  13. compiling stm32f7xx_hal_rcc_ex.c...
  14. compiling stm32f7xx_hal_dma_ex.c...
  15. compiling stm32f7xx_hal_pwr.c...
  16. compiling stm32f7xx_hal_qspi.c...
  17. compiling stm32f7xx_hal_i2c.c...
  18. compiling stm32f7xx_hal_ltdc.c...
  19. compiling stm32f7xx_hal_rcc.c...
  20. compiling stm32f7xx_hal_pwr_ex.c...
  21. compiling stm32f7xx_hal_gpio.c...
  22. compiling stm32f7xx_hal_dcmi_ex.c...
  23. compiling stm32f7xx_ll_fmc.c...
  24. compiling stm32f7xx_ll_sdmmc.c...
  25. compiling stm32f7xx_hal_sdram.c...
  26. compiling stm32f7xx_hal_adc.c...
  27. compiling stm32f7xx_hal_adc_ex.c...
  28. compiling stm32f7xx_hal_can.c...
  29. compiling stm32f7xx_hal_cec.c...
  30. compiling stm32f7xx_hal_crc.c...
  31. compiling stm32f7xx_hal_crc_ex.c...
  32. compiling stm32f7xx_hal_cryp.c...
  33. compiling stm32f7xx_hal_cryp_ex.c...
  34. compiling stm32f7xx_hal_dac.c...
  35. compiling stm32f7xx_hal_dac_ex.c...
  36. compiling stm32f7xx_hal_eth.c...
  37. compiling stm32f7xx_hal_hash.c...
  38. compiling stm32f7xx_hal_hash_ex.c...
  39. compiling stm32f7xx_hal_hcd.c...
  40. compiling stm32f7xx_hal_i2s.c...
  41. compiling stm32f7xx_hal_irda.c...
  42. compiling stm32f7xx_hal_lptim.c...
  43. compiling stm32f7xx_hal_msp_template.c...
  44. compiling stm32f7xx_hal_nand.c...
  45. compiling stm32f7xx_hal_nor.c...
  46. compiling stm32f7xx_hal_pcd.c...
  47. compiling stm32f7xx_hal_pcd_ex.c...
  48. compiling stm32f7xx_hal_rng.c...
  49. compiling stm32f7xx_hal_rtc.c...
  50. compiling stm32f7xx_hal_rtc_ex.c...
  51. compiling stm32f7xx_hal_sai.c...
  52. compiling stm32f7xx_hal_sai_ex.c...
  53. compiling stm32f7xx_hal_sd.c...
  54. compiling stm32f7xx_hal_smartcard.c...
  55. compiling stm32f7xx_hal_smartcard_ex.c...
  56. compiling stm32f7xx_hal_spi.c...
  57. compiling stm32f7xx_hal_sram.c...
  58. compiling stm32f7xx_hal_tim.c...
  59. compiling stm32f7xx_hal_tim_ex.c...
  60. compiling stm32f7xx_hal_uart.c...
  61. compiling stm32f7xx_hal_usart.c...
  62. compiling stm32f7xx_hal_wwdg.c...
  63. compiling stm32f7xx_ll_usb.c...
  64. compiling system_stm32f7xx.c...
  65. compiling main.c...
  66. compiling stm32f7xx_hal_msp.c...
  67. compiling stm32f7xx_it.c...
  68. assembling startup_stm32f746xx.s...
  69. compiling stm32_ub_font.c...
  70. compiling stm32_ub_graphic2d.c...
  71. compiling stm32_ub_i2c3.c...
  72. compiling stm32_ub_lcd_480x272.c...
  73. compiling stm32_ub_sdram.c...
  74. ..\Src\stm32_ub_sdram.c(53): error: #20: identifier "SDRAM_HandleTypeDef" is undefined
  75. __weak void P_SDRAM_MspInit(SDRAM_HandleTypeDef *hsdram, void *Params);
  76. ..\Src\stm32_ub_sdram.c(59): error: #20: identifier "SDRAM_HandleTypeDef" is undefined
  77. static SDRAM_HandleTypeDef sdramHandle;
  78. ..\Src\stm32_ub_sdram.c(60): error: #20: identifier "FMC_SDRAM_TimingTypeDef" is undefined
  79. static FMC_SDRAM_TimingTypeDef Timing;
  80. ..\Src\stm32_ub_sdram.c(61): error: #20: identifier "FMC_SDRAM_CommandTypeDef" is undefined
  81. static FMC_SDRAM_CommandTypeDef Command;
  82. ..\Src\stm32_ub_sdram.c(212): warning: #223-D: function "HAL_SDRAM_Write_32b" declared implicitly
  83. if(HAL_SDRAM_Write_32b(&sdramHandle, (uint32_t *)(startAdr+SDRAM_START_ADR), ptrBuffer, lenBuffer) != HAL_OK)
  84. ..\Src\stm32_ub_sdram.c(232): warning: #223-D: function "HAL_SDRAM_Read_32b" declared implicitly
  85. if(HAL_SDRAM_Read_32b(&sdramHandle, (uint32_t *)(startAdr+SDRAM_START_ADR), ptrBuffer, lenBuffer) != HAL_OK)
  86. ..\Src\stm32_ub_sdram.c(252): warning: #223-D: function "HAL_SDRAM_Write_DMA" declared implicitly
  87. if(HAL_SDRAM_Write_DMA(&sdramHandle, (uint32_t *)(startAdr+SDRAM_START_ADR), ptrBuffer, lenBuffer) != HAL_OK)
  88. ..\Src\stm32_ub_sdram.c(274): error: #20: identifier "FMC_SDRAM_DEVICE" is undefined
  89. sdramHandle.Instance = FMC_SDRAM_DEVICE;
  90. ..\Src\stm32_ub_sdram.c(285): error: #20: identifier "FMC_SDRAM_BANK1" is undefined
  91. sdramHandle.Init.SDBank = FMC_SDRAM_BANK1;
  92. ..\Src\stm32_ub_sdram.c(286): error: #20: identifier "FMC_SDRAM_COLUMN_BITS_NUM_8" is undefined
  93. sdramHandle.Init.ColumnBitsNumber = FMC_SDRAM_COLUMN_BITS_NUM_8;
  94. ..\Src\stm32_ub_sdram.c(287): error: #20: identifier "FMC_SDRAM_ROW_BITS_NUM_12" is undefined
  95. sdramHandle.Init.RowBitsNumber = FMC_SDRAM_ROW_BITS_NUM_12;
  96. ..\Src\stm32_ub_sdram.c(288): error: #20: identifier "FMC_SDRAM_MEM_BUS_WIDTH_16" is undefined
  97. sdramHandle.Init.MemoryDataWidth =
  98. DRAM_MEMORY_WIDTH;
  99. ..\Src\stm32_ub_sdram.c(289): error: #20: identifier "FMC_SDRAM_INTERN_BANKS_NUM_4" is undefined
  100. sdramHandle.Init.InternalBankNumber = FMC_SDRAM_INTERN_BANKS_NUM_4;
  101. ..\Src\stm32_ub_sdram.c(290): error: #20: identifier "FMC_SDRAM_CAS_LATENCY_2" is undefined
  102. sdramHandle.Init.CASLatency = FMC_SDRAM_CAS_LATENCY_2;
  103. ..\Src\stm32_ub_sdram.c(291): error: #20: identifier "FMC_SDRAM_WRITE_PROTECTION_DISABLE" is undefined
  104. sdramHandle.Init.WriteProtection = FMC_SDRAM_WRITE_PROTECTION_DISABLE;
  105. ..\Src\stm32_ub_sdram.c(292): error: #20: identifier "FMC_SDRAM_CLOCK_PERIOD_2" is undefined
  106. sdramHandle.Init.SDClockPeriod =
  107. DCLOCK_PERIOD;
  108. ..\Src\stm32_ub_sdram.c(293): error: #20: identifier "FMC_SDRAM_RBURST_ENABLE" is undefined
  109. sdramHandle.Init.ReadBurst = FMC_SDRAM_RBURST_ENABLE;
  110. ..\Src\stm32_ub_sdram.c(294): error: #20: identifier "FMC_SDRAM_RPIPE_DELAY_0" is undefined
  111. sdramHandle.Init.ReadPipeDelay = FMC_SDRAM_RPIPE_DELAY_0;
  112. ..\Src\stm32_ub_sdram.c(299): warning: #223-D: function "HAL_SDRAM_Init" declared implicitly
  113. if(HAL_SDRAM_Init(&sdramHandle, &Timing) == HAL_OK) sdramstatus = SUCCESS;
  114. ..\Src\stm32_ub_sdram.c(315): error: #20: identifier "FMC_SDRAM_CMD_CLK_ENABLE" is undefined
  115. Command.CommandMode = FMC_SDRAM_CMD_CLK_ENABLE;
  116. ..\Src\stm32_ub_sdram.c(316): error: #20: identifier "FMC_SDRAM_CMD_TARGET_BANK1" is undefined
  117. Command.CommandTarget = FMC_SDRAM_CMD_TARGET_BANK1;
  118. ..\Src\stm32_ub_sdram.c(321): warning: #223-D: function "HAL_SDRAM_SendCommand" declared implicitly
  119. HAL_SDRAM_SendCommand(&sdramHandle, &Command, SDRAM_TIMEOUT);
  120. ..\Src\stm32_ub_sdram.c(328): error: #20: identifier "FMC_SDRAM_CMD_PALL" is undefined
  121. Command.CommandMode = FMC_SDRAM_CMD_PALL;
  122. ..\Src\stm32_ub_sdram.c(337): error: #20: identifier "FMC_SDRAM_CMD_AUTOREFRESH_MODE" is undefined
  123. Command.CommandMode = FMC_SDRAM_CMD_AUTOREFRESH_MODE;
  124. ..\Src\stm32_ub_sdram.c(352): error: #20: identifier "FMC_SDRAM_CMD_LOAD_MODE" is undefined
  125. Command.CommandMode = FMC_SDRAM_CMD_LOAD_MODE;
  126. ..\Src\stm32_ub_sdram.c(362): warning: #223-D: function "HAL_SDRAM_ProgramRefreshRate" declared implicitly
  127. HAL_SDRAM_ProgramRefreshRate(&sdramHandle, RefreshCount);
  128. ..\Src\stm32_ub_sdram.c(368): error: #20: identifier "SDRAM_HandleTypeDef" is undefined
  129. __weak void P_SDRAM_MspInit(SDRAM_HandleTypeDef *hsdram, void *Params)
  130. ..\Src\stm32_ub_sdram.c: 6 warnings, 21 errors
  131. compiling stm32_ub_system.c...
  132. compiling stm32_ub_touch_480x272.c...
  133. "JETZTABER Configuration\JETZTABER Configuration.axf" - 21 Error(s), 6 Warning(s).
  134. Target not created.
  135. Build Time Elapsed: 00:03:57
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement