GUI Maker for Avalon Bus - FPGA SPI Bridge Panel

GUI Maker for Avalon Bus - FPGA SPI Bridge Panel

RapidNack.com
Sep 5, 2018
  • 40.3 MB

    파일 크기

  • Android 4.1+

    Android OS

GUI Maker for Avalon Bus - FPGA SPI Bridge Panel 정보

당신의 Nios II없이 인텔 FPGA의 아발론 버스를 운영 할 수있는 GUI를 만들 수 있습니다.

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 -----------------------------------

더 보기

What's new in the latest 1.3.0

Last updated on 2018-09-05
Panel "SPI Bridge Scope" added
더 보기

비디오 및 스크린 샷

  • GUI Maker for Avalon Bus - FPGA SPI Bridge Panel 포스터
  • GUI Maker for Avalon Bus - FPGA SPI Bridge Panel 스크린샷 1
  • GUI Maker for Avalon Bus - FPGA SPI Bridge Panel 스크린샷 2
  • GUI Maker for Avalon Bus - FPGA SPI Bridge Panel 스크린샷 3
  • GUI Maker for Avalon Bus - FPGA SPI Bridge Panel 스크린샷 4
  • GUI Maker for Avalon Bus - FPGA SPI Bridge Panel 스크린샷 5
  • GUI Maker for Avalon Bus - FPGA SPI Bridge Panel 스크린샷 6

GUI Maker for Avalon Bus - FPGA SPI Bridge Panel apk 정보

최신 버전
1.3.0
카테고리
도구
Android OS
Android 4.1+
파일 크기
40.3 MB
개발자
RapidNack.com
APKPure에서 안전하고 빠른 APK 다운로드
APKPure는 바이러스 없는 GUI Maker for Avalon Bus - FPGA SPI Bridge Panel APK 다운로드를 위해 서명 확인을 사용합니다.
APKPure 아이콘

APKPure 앱을통한매우빠르고안전한다운로드

한번의클릭으로 Android에 XAPK/APK 파일을설치할수있습니다!

다운로드 APKPure
thank icon
사용자 환경을 개선하기 위해 이 웹 사이트의 쿠키 및 기타 기술을 사용합니다.
이 페이지의 링크를 클릭하면 당사의 개인 정보 보호 정책쿠키 정책에 동의하는 것입니다.
더 알아보기