########################################################################################
#########                                                                    ###########
#########  Configuration file for the Custom Firmware Extender by Cpasjuste  ###########
#########                                                                    ###########
########################################################################################
#####################################################
# Buttons Code Information - No edit needed here
#####################################################
##	/** Select button. */
##	PSP_CTRL_SELECT	= 0x000001,
##	/** Start button. */
##	PSP_CTRL_START	= 0x000008,
##	/** Up D-Pad button. */
##	PSP_CTRL_UP		= 0x000010,
##	/** Right D-Pad button. */
##	PSP_CTRL_RIGHT	= 0x000020,
##	/** Down D-Pad button. */
##	PSP_CTRL_DOWN	= 0x000040,
##	/** Left D-Pad button. */
##	PSP_CTRL_LEFT	= 0x000080,
##	/** Left trigger. */
##	PSP_CTRL_LTRIGGER	= 0x000100,
##	/** Right trigger. */
##	PSP_CTRL_RTRIGGER	= 0x000200,
##	/** Triangle button. */
##	PSP_CTRL_TRIANGLE	= 0x001000,
##	/** Circle button. */
##	PSP_CTRL_CIRCLE	= 0x002000,
##	/** Cross button. */
##	PSP_CTRL_CROSS	= 0x004000,
##	/** Square button. */
##	PSP_CTRL_SQUARE	= 0x008000,
##	/** Home button. */
##	PSP_CTRL_HOME	= 0x010000,
##	/** Music Note button. */
##	PSP_CTRL_NOTE	= 0x800000,
##	/** Hold button. */
##	PSP_CTRL_HOLD	= 0x020000,
##	/** Screen button. */
##	PSP_CTRL_SCREEN	= 0x400000,
##	/** Volume up button. */
##	PSP_CTRL_VOLUP	= 0x100000,
##	/** Volume down button. */
##	PSP_CTRL_VOLDOWN	= 0x200000,
##	/** Wlan switch up. */
##	PSP_CTRL_WLAN_UP	= 0x040000,
##	/** Remote hold position. */
##	PSP_CTRL_REMOTE	= 0x080000,	
##	/** Disc present. */
##	PSP_CTRL_DISC	= 0x1000000,
##	/** Memory stick present. */
##	PSP_CTRL_MS		= 0x2000000,
##
##
########################################
#  Startup Settings
########################################
#
# Enable usb mass storage at startup (set to true to enable)
enableUsbMass = false;

# Set the default cpu speed
defaultCpuSpeed = 333;

########################################################
# Buttons Settings
# To make an action, it will be the combination 
# of the combo button + the function button 
# Set the Enable line to false to disable the option
########################################################
#
# Set the combo button
comboButton = 0x800000;

# Set the reset function button
resetEnable = true;
reset = 0x000080;

# Set the power off function button
poweroffEnable = true;
poweroff = 0x000020;

# Set the cpu speed function button
cpuspeedEnable = true;
cpuspeed = 0x000010;

# Set usb mass start stop function button
startStopUsbmassEnable = true;
startStopUsbmass = 0x000040;

# Set ftpd server start function button
startFtpdEnable = true;
startFtpd = 0x000100;

# Set the screenshot function button
takeScreenshotEnable = true;
takeScreenshot = 0x000200;

###############################################################
# Ftpd Server Settings
# Here you can set a custom password to log on 
# if you set authEnable = true;
###############################################################
authEnable = false;
password = "mypass";

