Advertisement
Guest User

Edited config.txt

a guest
Apr 9th, 2017
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.02 KB | None | 0 0
  1. # Uncomment some or all of these to enable the optional hardware interfaces
  2. # Params:
  3. # i2c_arm Set to "on" to enable the ARM's i2c interface
  4. # (default "off")
  5. # i2c_vc Set to "on" to enable the i2c interface
  6. # usually reserved for the VideoCore processor
  7. # (default "off")
  8. # i2c_arm_baudrate Set the baudrate of the ARM's i2c interface
  9. # (default "100000")
  10. # i2c_vc_baudrate Set the baudrate of the VideoCore i2c interface
  11. # (default "100000")
  12. # i2c_baudrate An alias for i2c_arm_baudrate
  13. # i2s Set to "on" to enable the i2s interface
  14. # (default "off")
  15. # spi Set to "on" to enable the spi interfaces
  16. # (default "off")
  17. # act_led_trigger Choose which activity the LED tracks.
  18. # Use "heartbeat" for a nice load indicator.
  19. # (default "mmc")
  20. # act_led_activelow Set to "on" to invert the sense of the LED
  21. # (default "off")
  22. # act_led_gpio Set which GPIO pin to use for the activity LED
  23. # (in case you want to connect it to an external
  24. # device)
  25. # (default "16" on a non-Plus board, "47" on a
  26. # Plus or Pi 2)
  27. # N.B. It is recommended to only enable those interfaces that are needed.
  28. # Leaving all interfaces enabled can lead to unwanted behaviour (i2c_vc
  29. # interfering with Pi Camera, I2S and SPI hogging GPIO pins, etc.)
  30. # Note also that i2c, i2c_arm and i2c_vc are aliases for the physical
  31. # interfaces i2c0 and i2c1. Use of the numeric variants is still possible
  32. # but deprecated because the ARM/VC assignments differ between board
  33. # revisions. The same board-specific mapping applies to i2c_baudrate,
  34. # and the other i2c baudrate parameters.
  35.  
  36. #dtparam=i2c_arm=on
  37. #dtparam=i2c_vc=on
  38. #dtparam=i2s=on
  39. #dtparam=spi=on
  40. #dtparam=act_led_trigger=mmc
  41.  
  42. #dtparam=uart1=off
  43. #dtoverlay=pi3-disable-bt-overlay
  44.  
  45. # Uncomment one of these lines to enable an audio interface
  46. #dtoverlay=hifiberry-dac
  47. #dtoverlay=hifiberry-dacplus
  48. dtoverlay=hifiberry-digi
  49. #dtoverlay=hifiberry-amp
  50. #dtoverlay=iqaudio-dac
  51. #dtoverlay=iqaudio-dacplus
  52. dtparam=audio=on
  53.  
  54. # Uncomment to enable the lirc-rpi module
  55. # Params: gpio_out_pin GPIO pin for output (default "17")
  56. # gpio_in_pin GPIO pin for input (default "18")
  57. # gpio_in_pull Pull up/down/off on the input pin
  58. # (default "down")
  59. # sense Override the IR receive auto-detection logic:
  60. # "1" = force active high
  61. # "0" = force active low
  62. # "-1" = use auto-detection
  63. # (default "-1")
  64. # softcarrier Turn the software carrier "on" or "off"
  65. # (default "on")
  66. # invert "on" = invert the output pin (default "off")
  67. # debug "on" = enable additional debug messages
  68. # (default "off")
  69. #dtoverlay=lirc-rpi
  70. #dtparam=gpio_out_pin=17
  71. #dtparam=gpio_in_pin=18
  72. #dtparam=gpio_in_pull=down
  73.  
  74. # LCD settings
  75. # 180 degrees
  76. lcd_rotate=2
  77. # Normal
  78. #lcd_rotate=0
  79. #dtoverlay=rpi-backlight
  80. #dtoverlay=rpi-ft5406
  81.  
  82. # Uncomment if you get no picture on HDMI for a default "safe" mode
  83. #hdmi_safe=1
  84.  
  85. # Uncomment this if your display has a black border of unused pixels visible
  86. # and your display can output without overscan
  87. #disable_overscan=1
  88.  
  89. # Uncomment the following to adjust overscan. Use positive numbers if console
  90. # goes off screen, and negative if there is too much border
  91. #overscan_left=16
  92. #overscan_right=16
  93. #overscan_top=16
  94. #overscan_bottom=16
  95.  
  96. # Uncomment to force a console size. By default it will be display's size minus
  97. # overscan.
  98. #framebuffer_width=1280
  99. #framebuffer_height=720
  100.  
  101. # Uncomment if hdmi display is not detected and composite is being output
  102. #hdmi_force_hotplug=1
  103.  
  104. # Uncomment to force a specific HDMI mode (this will force VGA)
  105. #hdmi_group=1
  106. #hdmi_mode=1
  107.  
  108. # Uncomment to force a HDMI mode rather than DVI. This can make audio work in
  109. # DMT (computer monitor) modes
  110. hdmi_drive=2
  111.  
  112. # Uncomment to set monitor mode to DMT
  113. #hdmi_group=2
  114.  
  115. # Uncomment to increase signal to HDMI, if you have interference, blanking, or
  116. # no display
  117. #config_hdmi_boost=4
  118.  
  119. # setting the max usb current to 1200mA
  120. max_usb_current=1
  121.  
  122. # memory options
  123. gpu_mem=64
  124.  
  125. # Overclocking options
  126. force_turbo=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement