GUI Maker for Avalon Bus - FPGA SPI Bridge Panel Apk
Apk Infos
Version | 1.3.0 |
Rating | 5.0/5, based on 1 votes |
Size | 40.3 MB |
Requires Android | Android 4.1+ (Jelly Bean) |
Author's Notes | You can create a GUI to operate Intel FPGA's Avalon bus without Nios II. |
About GUI Maker for Avalon Bus - FPGA SPI Bridge Panel APK
Table Of Contents
Description
What is the purpose of this application?You can create a GUI to operate Intel (formerly Altera) FPGA's Avalon bus in a short time. You can operate FPGA from Android without Nios II CPU.
You can place buttons, timers, graphs, etc., and describe the processing in Python.
Likewise, you can write a simple game by describing the placement and processing of 3D objects in Python.
What program should be written to ESP8266 / ESP32?
Arduino sketch http://rapidnack.com/?p=835
Operation explanation - Display http://rapidnack.com/?p=918
SPI Bridge Scope http://rapidnack.com/?p=1831
Please write the above Arduino sketch to ESP.
You can use the following methods to access the Avalon bus in the FPGA.
byte[] WriteBytePacket(UInt32 addr, byte data, int timeoutInSec = 3)
byte[] WriteUInt16Packet(UInt32 addr, UInt16 data, int timeoutInSec = 3)
byte[] WriteUInt32Packet(UInt32 addr, UInt32 data, int timeoutInSec = 3)
byte[] WriteBytePacket(UInt32 addr, byte[] dataBytes, bool isIncremental = false, int timeoutInSec = 3)
byte[] WriteUInt16Packet(UInt32 addr, UInt16[] dataArray, bool isIncremental = false, int timeoutInSec = 3)
byte[] WriteUInt32Packet(UInt32 addr, UInt32[] dataArray, bool isIncremental = false, int timeoutInSec = 3)
byte ReadBytePacket(UInt32 addr, int timeoutInSec = 3)
UInt16 ReadUInt16Packet(UInt32 addr, int timeoutInSec = 3)
UInt32 ReadUInt32Packet(UInt32 addr, int timeoutInSec = 3)
byte[] ReadBytePacket(UInt16 size, UInt32 addr, bool isIncremental = false, int timeoutInSec = 3)
UInt16[] ReadUInt16Packet(UInt16 size, UInt32 addr, bool isIncremental = false, int timeoutInSec = 3)
UInt32[] ReadUInt32Packet(UInt16 size, UInt32 addr, bool isIncremental = false, int timeoutInSec = 3)
The following is a sketch for ESP32.
---------------------------------- from here -----------------------------------
#include <SPI.h>
#include <WiFi.h>
const char* ssid = "your-ssid";
const char* password = "your-password";
WiFiServer server(2002);
WiFiClient client;
#define SPI_BUF_LEN 1024
byte spiBuf[SPI_BUF_LEN];
byte spiReadBuf[SPI_BUF_LEN];
void setup() {
Serial.begin(57600);
SPI.begin();
SPI.setFrequency(24000000);
SPI.setDataMode(SPI_MODE1);
SPI.setBitOrder(MSBFIRST);
pinMode(SS, OUTPUT);
digitalWrite(SS, HIGH);
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
//WiFi.mode(WIFI_STA); // Disable Access Point
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
server.begin();
Serial.println("Server started");
}
void loop() {
if (!client.connected()) {
// try to connect to a new client
client = server.available();
} else {
// read data from the connected client
int n = client.available();
if (n > 0) {
//Serial.print("available: ");
//Serial.println(n);
if (n > SPI_BUF_LEN) {
n = SPI_BUF_LEN;
}
// transfer data to/from SPI
client.readBytes(spiBuf, n);
digitalWrite(SS, LOW);
SPI.transferBytes(spiBuf, spiReadBuf, n);
digitalWrite(SS, HIGH);
// return data to client
client.write(spiReadBuf, n);
}
}
}
----------------------------------- until here -----------------------------------
Latest updates
What's new in version 1.3.0
Panel "SPI Bridge Scope" addedHow to install GUI Maker for Avalon Bus - FPGA SPI Bridge Panel APK on Android phone or tablet?
Download GUI Maker for Avalon Bus - FPGA SPI Bridge Panel APK file from ApkClean, then follow these steps:
Update Phone Settings
- Go to your phone Settings page
- Tap Security or Applications (varies with device)
- Check the Unknown Sources box
- Confirm with OK
Go to Downloads
- Open Downloads on your device by going to My Files or Files
- Tap the APK file you downloaded (com.rapidnack.SPIBridgePanel-v1.3.0-ApkClean.apk)
- Tap Install when prompted, the APK file you downloaded will be installed on your device.
Older Versions
1.3.0 (17) | 40.3 MB |
Questions & Answers
Q: What is an APK File?
A: Just like Windows (PC) systems use an .exe file for installing software, Android does the same. An APK file is the file format used for installing software on the Android operating system.
Q: If I install an APK from this website, will I be able to update the app from the Play Store?
A: Yes, absolutely. The Play Store installs APKs it downloads from Google's servers, and sideloading from a site like ApkClean.net goes through a very similar process, except you're the one performing the downloading and initiating the installation (sideloading).
As soon as the Play Store finds a version of the app newer than the one you've sideloaded, it will commence an update.
Q: Why ApkClean.net can guarantee APK 100% safe?
A: Whenever someone wants to download an APK file from ApkClean.net, we'll check the corresponding APK file on Google Play and allow user download it directly (of course, we'll cache it on our server). If the APK file does not exist on Google Play, we'll search it in our cache.
Q: What are Android App permissions?
A: Apps require access to certain systems within your device. When you install an application, you are notified of all of the permissions required to run that application.
Don't hesitate to contact us if you have any questions or concerns.
(*) is required