Subversion Repositories Code-Repo

Rev

Go to most recent revision | Show changed files | Directory listing | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
128 4357 d 10 h Kevin /PIC Stuff/PIC_27J13/ Access to static data storage structures changed to go through pointers to avoid banking optimization errors.  
127 4357 d 19 h Kevin /PIC Stuff/PIC_27J13/ Added support for multiple NFC card detection in InListPassiveTarget.
Added support for NFC polling requests with InAutoPoll.
Modified NFC test code to query without locking up.
Added support for XBee API mode including escaped character (AP=2).
Added option to forward UART1 Rx to internal buffer or XBee decoder.
Added test case for XBee modules.
 
126 4361 d 3 h Kevin /PIC Stuff/PIC_27J13/ Improved handling for NFC and UART.  
125 4361 d 3 h Kevin /KiCAD/ Import of PIC 18F27J13 v.A0 breakout board project.  
124 4361 d 3 h Kevin /KiCAD/ Created folder to hold KiCad files.  
123 4365 d 5 h Kevin /PIC Stuff/PIC_27J13/ Added support for the ADC peripheral. Also added in a test case to read ADC and print to OLED display.  
122 4365 d 19 h Kevin /PIC Stuff/PIC_27J13/ Changed a few function names and added support for inserting text at the beginning of the OLED display.  
121 4367 d 8 h Kevin /PIC Stuff/PIC_27J13/ Added testing code for different peripherals.
Fully implemented I2C and SPI2.
Manually added a linker file for RAM management.
Ported over graphics library from Adafruit.
Added support for SSD1331 and SSD1306 OLED graphics drivers.
Added support for the I2C LED backpack.
Added support for the I2C PN532 NFC reader.
 
120 4381 d 3 h Kevin /PIC Stuff/PIC_27J13/ Ported over I2C code. Verified that master mode read/write/restart works and slave mode read/write works.  
119 4382 d 8 h Kevin /PIC Stuff/PIC_27J13/ Import PIC framework for F27J13 from embedded systems. Changed framework to use lock-free buffers instead of message queues (async serial only).  
118 4382 d 8 h Kevin /PIC Stuff/ Created folder for holding PIC code for personal projects.  
117 4440 d 2 h Kevin /Classwork/ECE4534 - Embedded Systems/PIC 26J11/ Updated some stuff.  
116 4446 d 7 h Kevin /Classwork/ECE4534 - Embedded Systems/PIC 26J11/ Remote now sends a new message when data recording has been stopped. Also implemented a possible fix for INT1 killing the I2C interrupt.  
115 4447 d 10 h Kevin /Classwork/ECE4534 - Embedded Systems/PIC 26J11/ Near finalized PIC code.  
114 4451 d 18 h Kevin /Classwork/ECE4534 - Embedded Systems/PIC 26J11/ Implemented a bunch of stuff and added defines to choose between compiling for the base station or remote.  
113 4453 d 3 h Kevin /Classwork/ECE4534 - Embedded Systems/PIC 26J11/ Changed PIC 27J13 project to 26J11  
112 4453 d 3 h Kevin /Classwork/ECE4534 - Embedded Systems/PIC 27J13/ New revisions.  
111 4467 d 2 h Kevin /Classwork/ECE4534 - Embedded Systems/PIC 27J13/ Implemented a buffer for received data from XBee. Also changed the naming of definitions to differentiate from base station code and remote code.  
110 4472 d 4 h Kevin /Classwork/ECE4534 - Embedded Systems/PIC 27J13/dist/default/production/ Added some files missing from the last commit.  
109 4472 d 4 h Kevin /Classwork/ECE4534 - Embedded Systems/PIC 27J13/ Changed XBee pins and enabled port B interrupts.

/* ----------- IO Pins -----------
* RA0 - LED Display Latch Enable (PPS)
* RA1 - LED Display CLK (PPS)
* RA2 - LED Display DIN (PPS)
* RA3 - LED Display Output Enable (PPS)
* RA4 - [CANNOT BE USED (VDDCORE/VCAP)]
* RA5 - IR Reciever (PPS)
* RA6 - Oscillator
* RA7 - Oscillator
*
* RC0 - PWM Output (IR) (PPS, Ports B and C only)
* RC1 - PWM Output (IR) (PPS, Ports B and C only)
* RC2 - LED Output (PPS, Ports B and C only)
* RC3 - I2C SCL
* RC4 - I2C SDA
* RC5 - XBee Sleep (PPS)
* RC6 - UART Debug Output
* RC7 - UART Debug Input
*
* RB0 - XBee CTS (PPS)
* RB1 - XBee RTS (PPS)
* RB2 - XBee RX (PPS)
* RB3 - XBee Tx (PPS)
* RB4 - Button Input (Port B Interrupt on Change)
* RB5 - Button Input (Port B Interrupt on Change)
* RB6 - Button Input (Port B Interrupt on Change)
* RB7 - Button Input (Port B Interrupt on Change)
* ---------------------------- */
 

Show All