Difference between revisions of "SceOled"

From Vita Development Wiki
Jump to navigation Jump to search
Line 84: Line 84:
 
== SceOledForDriver ==
 
== SceOledForDriver ==
  
=== ksceOledWaitReady ===
+
=== sceOledWaitReadyForDriver ===
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 92: Line 92:
 
|}
 
|}
  
<source lang="c">int ksceOledWaitReady();</source>
+
<source lang="c">int sceOledWaitReadyForDriver();</source>
  
 
Waits until the OLED has been initialized.
 
Waits until the OLED has been initialized.
  
=== ksceOledForDriver_2F0C4B67 ===
+
=== SceOledForDriver_2F0C4B67 ===
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 104: Line 104:
 
|}
 
|}
  
<source lang="c">int ksceOledForDriver_2F0C4B67(u8 cmd, void *buffer, int size);</source>
+
<source lang="c">int SceOledForDriver_2F0C4B67_send_cmd(u8 cmd, void *buffer, int size);</source>
  
Sends a command to the OLED.
+
Sends a command to the OLED (via SPI).
  
=== ksceOledGetBrightness ===
+
=== sceOledGetBrightnessForDriver ===
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 116: Line 116:
 
|}
 
|}
  
<source lang="c">int ksceOledGetBrightness();</source>
+
<source lang="c">int ceOledGetBrightnessForDriver();</source>
  
 
Get the wide brightness value (<code>0-65536</code>).
 
Get the wide brightness value (<code>0-65536</code>).
  
=== ksceOledDisplayOn ===
+
=== sceOledDisplayOnForDriver ===
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 128: Line 128:
 
|}
 
|}
  
<source lang="c">int ksceOledDisplayOn();</source>
+
<source lang="c">int sceOledDisplayOnForDriver();</source>
  
=== ksceOledDisplayOff ===
+
=== sceOledDisplayOffForDriver ===
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 138: Line 138:
 
|}
 
|}
  
<source lang="c">int ksceOledDisplayOff();</source>
+
<source lang="c">int sceOledDisplayOffForDriver();</source>
  
=== ksceOledSetDisplayColorSpaceMode ===
+
=== sceOledSetDisplayColorSpaceModeForDriver ===
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 148: Line 148:
 
|}
 
|}
  
<source lang="c">int ksceOledSetDisplayColorSpaceMode(int mode);</source>
+
<source lang="c">int sceOledSetDisplayColorSpaceModeForDriver(int mode);</source>
  
=== ksceOledForDriver_E30604CC ===
+
=== SceOledForDriver_E30604CC ===
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 157: Line 157:
 
| 3.60 || 0xE30604CC
 
| 3.60 || 0xE30604CC
 
|}
 
|}
 +
 +
<source lang="c">int SceOledForDriver_E30604CC_dispatch_cmd_list(void);</source>
  
 
Dispatches the OLED cmd list (using ksceOledForDriver_2F0C4B67).
 
Dispatches the OLED cmd list (using ksceOledForDriver_2F0C4B67).
  
=== ksceOledSetBrightness ===
+
=== sceOledSetBrightnessForDriver ===
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 168: Line 170:
 
|}
 
|}
  
<source lang="c">int ksceOledSetBrightness(unsigned int brightness);</source>
+
<source lang="c">int sceOledSetBrightnessForDriver(unsigned int brightness);</source>
  
 
Set the brightness (brightness needs to be in the range <code>0-65536</code>). <code>0</code> means screen turned off, <code>1</code> means screen dimmed (like if you wait for a long time without touching your screen).
 
Set the brightness (brightness needs to be in the range <code>0-65536</code>). <code>0</code> means screen turned off, <code>1</code> means screen dimmed (like if you wait for a long time without touching your screen).

Revision as of 10:20, 28 July 2018

Module

Known NIDs

Version Name World Privilege NID
1.69 SceOled Non-secure Kernel 0x5410837A

Libraries

Known NIDs

Version Name World Visibility NID
1.69 SceOledForDriver Non-secure Kernel 0x60C7478A

Resources

TODO: move to OLED.

Types

enum SceOledError {
    SCE_OLED_ERROR_INVALID_BRIGHTNESS_VALUE = 0x803F0A02,
    SCE_OLED_ERROR_INVALID_READY_STATUS = 0x803F0A03,
    SCE_OLED_ERROR_NOT_READY = 0x803F0A04,
    SCE_OLED_ERROR_INTERNAL = 0x803F0A05
};

enum SceOledStatus {
    SCE_OLED_STATUS_NOT_READY = 0,
    SCE_OLED_STATUS_READY = 1,
    SCE_OLED_STATUS_ERROR = 2
};

struct SceOledCmd {
    unsigned char cmd,
    unsigned char size,
    unsigned char buf[size]
}

A cmd_queue is a contiguous array of SceOledCmd of different sizes. To get the next SceOledCmd of a queue, do:

struct SceOledCmd *cur_cmd = ...
struct SceOledCmd *next_cmd = &(cur_cmd->buf) + cur_cmd->size;

if (next_cmd->cmd == 0 || next_cmd->cmd == 255) {...} // End of queue

Available commands

Cmd Size Buf Description
178 1 Unknown Unknown
249 1 or 22 Unknown, for example <0x01, 0xCFBE9F9F, 0xCBC2C9D7, 0xDEE3E1BB, 0xFAD3D0D6, 0x002FE6ED, 0x2F> (Little-Endian) Change Brightness

SceOledForDriver

sceOledWaitReadyForDriver

Version NID
3.60 0x0CC6BCB4
int sceOledWaitReadyForDriver();

Waits until the OLED has been initialized.

SceOledForDriver_2F0C4B67

Version NID
3.60 0x2F0C4B67
int SceOledForDriver_2F0C4B67_send_cmd(u8 cmd, void *buffer, int size);

Sends a command to the OLED (via SPI).

sceOledGetBrightnessForDriver

Version NID
3.60 0x43EF811A
int ceOledGetBrightnessForDriver();

Get the wide brightness value (0-65536).

sceOledDisplayOnForDriver

Version NID
3.60 0x4C7836C7
int sceOledDisplayOnForDriver();

sceOledDisplayOffForDriver

Version NID
3.60 0xBC84602E
int sceOledDisplayOffForDriver();

sceOledSetDisplayColorSpaceModeForDriver

Version NID
3.60 0xDABBD9D3
int sceOledSetDisplayColorSpaceModeForDriver(int mode);

SceOledForDriver_E30604CC

Version NID
3.60 0xE30604CC
int SceOledForDriver_E30604CC_dispatch_cmd_list(void);

Dispatches the OLED cmd list (using ksceOledForDriver_2F0C4B67).

sceOledSetBrightnessForDriver

Version NID
3.60 0xF9624C47
int sceOledSetBrightnessForDriver(unsigned int brightness);

Set the brightness (brightness needs to be in the range 0-65536). 0 means screen turned off, 1 means screen dimmed (like if you wait for a long time without touching your screen).

The brightness has actually 17 different values: 1 special value for brightness=0, and 16 different values for the rest (real_value=brightness/4096).