Advertisement
lukicdarkoo

Configuration for Raspberry Pi (config.txt)

Jan 1st, 2017
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. # For more options and information see
  2. # http://www.raspberrypi.org/documentation/configuration/config-txt.md
  3. # Some settings may impact device functionality. See link above for details
  4.  
  5. # CAN overlay
  6. dtparam=spi=on
  7. dtoverlay=mcp2515-can0,oscillator=16000000,interrupt=25
  8. dtoverlay=spi-bcm2835
  9.  
  10. # Enable UART (tweaks)
  11. enable_uart=1
  12. dtoverlay=pi3-disable-bt
  13.  
  14.  
  15.  
  16. # uncomment if you get no picture on HDMI for a default "safe" mode
  17. #hdmi_safe=1
  18.  
  19. # uncomment this if your display has a black border of unused pixels visible
  20. # and your display can output without overscan
  21. #disable_overscan=1
  22.  
  23. # uncomment the following to adjust overscan. Use positive numbers if console
  24. # goes off screen, and negative if there is too much border
  25. #overscan_left=16
  26. #overscan_right=16
  27. #overscan_top=16
  28. #overscan_bottom=16
  29.  
  30. # uncomment to force a console size. By default it will be display's size minus
  31. # overscan.
  32. #framebuffer_width=1280
  33. #framebuffer_height=720
  34.  
  35. # uncomment if hdmi display is not detected and composite is being output
  36. #hdmi_force_hotplug=1
  37.  
  38. # uncomment to force a specific HDMI mode (this will force VGA)
  39. #hdmi_group=1
  40. #hdmi_mode=1
  41.  
  42. # uncomment to force a HDMI mode rather than DVI. This can make audio work in
  43. # DMT (computer monitor) modes
  44. #hdmi_drive=2
  45.  
  46. # uncomment to increase signal to HDMI, if you have interference, blanking, or
  47. # no display
  48. #config_hdmi_boost=4
  49.  
  50. # uncomment for composite PAL
  51. #sdtv_mode=2
  52.  
  53. #uncomment to overclock the arm. 700 MHz is the default.
  54. #arm_freq=800
  55.  
  56. # Uncomment some or all of these to enable the optional hardware interfaces
  57. #dtparam=i2c_arm=on
  58. #dtparam=i2s=on
  59. #dtparam=spi=on
  60.  
  61. # Uncomment this to enable the lirc-rpi module
  62. #dtoverlay=lirc-rpi
  63.  
  64. # Additional overlays and parameters are documented /boot/overlays/README
  65.  
  66. # Enable audio (loads snd_bcm2835)
  67. # dtparam=audio=on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement