mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-03-21 17:34:42 -05:00
41 lines
1.5 KiB
C
41 lines
1.5 KiB
C
//Created by StevenChaulk https://github.com/stevenchaulk/arduino-poke-gen2
|
|
|
|
#ifndef GAMEBOY_COLOUR_H_
|
|
#define GAMEBOY_COLOUR_H_
|
|
|
|
#include <tonc.h>
|
|
#include "libraries/gba-link-connection/LinkSPI.hpp"
|
|
#include "pokemon_party.h"
|
|
|
|
/*
|
|
#define LINK_SPI_NO_DATA 0xffffffff
|
|
#define LINK_SPI_SIOCNT_NORMAL 0
|
|
#define LINK_SPI_BIT_CLOCK 0
|
|
#define LINK_SPI_BIT_CLOCK_SPEED 1
|
|
#define LINK_SPI_BIT_SI 2
|
|
#define LINK_SPI_BIT_SO 3
|
|
#define LINK_SPI_BIT_START 7
|
|
#define LINK_SPI_BIT_LENGTH 12
|
|
#define LINK_SPI_BIT_IRQ 14
|
|
#define LINK_SPI_BIT_GENERAL_PURPOSE_LOW 14
|
|
#define LINK_SPI_BIT_GENERAL_PURPOSE_HIGH 15
|
|
#define LINK_SPI_SET_HIGH(REG, BIT) REG |= 1 << BIT
|
|
#define LINK_SPI_SET_LOW(REG, BIT) REG &= ~(1 << BIT)
|
|
|
|
#define LINK_SPI_SET(REG, BIT, VALUE) VALUE ? LINK_SPI_SET_HIGH(REG, BIT) : LINK_SPI_SET_LOW(REG, BIT)
|
|
*/
|
|
|
|
|
|
// The number of frames(?) between changing the clock signals
|
|
#define FAST_SPEED 10
|
|
#define SLOW_SPEED 1000
|
|
|
|
void setup(const u16 *debug_charset);
|
|
byte handleIncomingByte(byte in, byte *box_data_storage, byte *curr_payload, GB_ROM *curr_gb_rom, PokeBox* box, const u16 *debug_charset, bool cancel_connection);
|
|
int loop(byte *box_data_storage, byte *curr_payload, GB_ROM *curr_rom, PokeBox* box, const u16 *debug_charset, bool cancel_connection);
|
|
byte exchange_parties(byte curr_in, byte *curr_payload);
|
|
byte exchange_boxes(byte curr_in, byte *party_data, GB_ROM *curr_gb_rom);
|
|
byte exchange_remove_array(byte curr_in, PokeBox* box, bool cancel_connection);
|
|
|
|
#endif /* GAMEBOY_COLOUR_H_ */
|