mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2024-12-28 20:43:36 +01:00
reduce static RAM usage to maintain SH3 support
This commit is contained in:
parent
97701e8eed
commit
c9df6326e4
2 changed files with 8 additions and 2 deletions
|
@ -13,7 +13,7 @@ extern "C" {
|
|||
#include <stddef.h>
|
||||
|
||||
/* Maximum number of file descriptors */
|
||||
#define FS_FD_MAX 32
|
||||
#define FS_FD_MAX 16
|
||||
|
||||
/* fs_descriptor_type_t: Overloaded file descriptor functions
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#include <gint/usb.h>
|
||||
#include "usb_private.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
//---
|
||||
// Endpoint assignment
|
||||
|
@ -7,7 +8,12 @@
|
|||
|
||||
/* Current configuration: list of interfaces and endpoint assignments */
|
||||
static usb_interface_t const *conf_if[16];
|
||||
static endpoint_t conf_ep[32];
|
||||
static endpoint_t *conf_ep;
|
||||
|
||||
GCONSTRUCTOR static void usb_alloc(void)
|
||||
{
|
||||
conf_ep = malloc(32 * sizeof *conf_ep);
|
||||
}
|
||||
|
||||
/* usb_configure_endpoint(): Get endpoint data for a concrete address */
|
||||
endpoint_t *usb_configure_endpoint(int endpoint)
|
||||
|
|
Loading…
Reference in a new issue