readme.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. STM32F469 Discovery
  2. ===================
  3. This tutorial describes how to use the predefined Buildroot
  4. configuration for the STM32F469 Discovery evaluation platform.
  5. Building
  6. --------
  7. make stm32f469_disco_sd_defconfig
  8. make
  9. Flashing
  10. --------
  11. ./board/stmicroelectronics/stm32f469-disco/flash_sd.sh output/
  12. It will flash the U-boot bootloader.
  13. Creating SD card
  14. ----------------
  15. Buildroot prepares an"sdcard.img" image in the output/images/ directory,
  16. ready to be dumped on a SD card. Launch the following command as root:
  17. dd if=output/images/sdcard.img of=/dev/<your-sd-device>
  18. *** WARNING! This will destroy all the card content. Use with care! ***
  19. For details about the medium image layout and its content, see the
  20. definition in board/stmicroelectronics/stm32f469-disco/genimage.cfg.
  21. Framebuffer
  22. -----------
  23. After Linux boots, /dev/fb0 will be accessible. You can control the
  24. brightness of the display after enabling the framebuffer by running the
  25. following commands:
  26. # echo 0 0 > /sys/class/graphics/fb0/pan
  27. # echo 255 >/sys/class/backlight/40016c00.dsi.0/brightness
  28. The brightness ranges from 0 to 255, as you can see running the
  29. command:
  30. # cat /sys/class/backlight/40016c00.dsi.0/max_brightness